Skip to content

Commit

Permalink
Merge pull request #13970 from nextcloud/fix/13952/start-no-media-fixup
Browse files Browse the repository at this point in the history
fix(media): checking for config existence, not value
  • Loading branch information
Antreesy authored Dec 10, 2024
2 parents d7b569e + 6639dc0 commit e9e20f9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/SettingsDialog/SettingsDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,7 @@ const isBackgroundBlurredState = serverSupportsBackgroundBlurred
? loadState('spreed', 'force_enable_blur_filter', '') // 'yes', 'no', ''
: BrowserStorage.getItem('background-blurred') // 'true', 'false', null
const supportTypingStatus = getTalkConfig('local', 'chat', 'typing-privacy') !== undefined
const supportStartWithoutMedia = getTalkConfig('local', 'call', 'start-without-media')

const supportStartWithoutMedia = getTalkConfig('local', 'call', 'start-without-media') !== undefined
export default {
name: 'SettingsDialog',

Expand Down

0 comments on commit e9e20f9

Please sign in to comment.