Skip to content

Commit

Permalink
Merge pull request #13972 from nextcloud/backport/13970/stable30
Browse files Browse the repository at this point in the history
[stable30] fix(media): checking for config existence, not value
  • Loading branch information
Antreesy authored Dec 10, 2024
2 parents 12b893d + a4c245d commit f7f4e8e
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 f7f4e8e

Please sign in to comment.