Fix media app denylist not being saved

Close #1094
This commit is contained in:
MM20
2024-10-20 18:12:40 +02:00
parent 8376a41777
commit 4f5e80dede
@@ -22,7 +22,7 @@ class MediaSettings internal constructor(
fun setLists(allowList: Set<String>, denyList: Set<String>) { fun setLists(allowList: Set<String>, denyList: Set<String>) {
launcherDataStore.update { launcherDataStore.update {
it.copy(mediaAllowList = allowList) it.copy(mediaAllowList = allowList, mediaDenyList = denyList)
} }
} }