Fix Settings import

This commit is contained in:
Laksh 2021-09-25 15:37:07 +05:30
parent c1f7b2653c
commit bc3139e5f9
1 changed files with 4 additions and 0 deletions

View File

@ -91,6 +91,10 @@ class ContentSettingsManager(private val fileLocator: NewPipeFileLocator) {
is String -> {
preferenceEditor.putString(key, value)
}
is HashSet<*> -> {
@Suppress("UNCHECKED_CAST")
preferenceEditor.putStringSet(key, value as MutableSet<String>?)
}
}
}
preferenceEditor.commit()