Set isShowingThumbnailInLockscreen as false by default

This commit is contained in:
vfsfitvnm 2022-09-05 11:50:41 +02:00
parent 45235acd5d
commit 105565afec
2 changed files with 2 additions and 2 deletions

View file

@ -171,7 +171,7 @@ class PlayerService : InvincibleService(), Player.Listener, PlaybackStatsListene
isVolumeNormalizationEnabled = preferences.getBoolean(volumeNormalizationKey, false)
isInvincibilityEnabled = preferences.getBoolean(isInvincibilityEnabledKey, false)
isShowingThumbnailInLockscreen =
preferences.getBoolean(isShowingThumbnailInLockscreenKey, true)
preferences.getBoolean(isShowingThumbnailInLockscreenKey, false)
val cacheEvictor = when (val size =
preferences.getEnum(exoPlayerDiskCacheMaxSizeKey, ExoPlayerDiskCacheMaxSize.`2GB`)) {

View file

@ -56,7 +56,7 @@ fun AppearanceSettingsScreen() {
)
var isShowingThumbnailInLockscreen by rememberPreference(
isShowingThumbnailInLockscreenKey,
true
false
)
Column(