fix edge to edge mode, lint

This commit is contained in:
Samuel Newman
2025-11-24 14:29:45 +02:00
parent 2111c5470f
commit efa75662dc
6 changed files with 113 additions and 134 deletions
@@ -34,12 +34,15 @@ class NotificationPrefs(
is Boolean -> {
putBoolean(key, value)
}
is String -> {
putString(key, value)
}
is Array<*> -> {
putStringSet(key, value.map { it.toString() }.toSet())
}
is Map<*, *> -> {
putStringSet(key, value.map { it.toString() }.toSet())
}