feat: add new preference to unmute videos by default (#3218)
This commit is contained in:
parent
60b1d0224c
commit
41379627b5
4 changed files with 12 additions and 2 deletions
|
@ -23,6 +23,7 @@ export interface PreferencesSettings {
|
|||
hideNews: boolean
|
||||
grayscaleMode: boolean
|
||||
enableAutoplay: boolean
|
||||
unmuteVideos: boolean
|
||||
optimizeForLowPerformanceDevice: boolean
|
||||
enableDataSaving: boolean
|
||||
enablePinchToZoom: boolean
|
||||
|
@ -79,6 +80,7 @@ export const DEFAULT__PREFERENCES_SETTINGS: PreferencesSettings = {
|
|||
hideNews: false,
|
||||
grayscaleMode: false,
|
||||
enableAutoplay: true,
|
||||
unmuteVideos: false,
|
||||
optimizeForLowPerformanceDevice: false,
|
||||
enableDataSaving: false,
|
||||
enablePinchToZoom: false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue