We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e390440 commit 81e584aCopy full SHA for 81e584a
app/src/main/kotlin/com/simplemobiletools/contacts/helpers/Config.kt
@@ -9,7 +9,7 @@ class Config(context: Context) : BaseConfig(context) {
9
}
10
11
var ignoredContactSources: HashSet<String>
12
- get() = prefs.getStringSet(IGNORED_CONTACT_SOURCES, hashSetOf("")) as HashSet
+ get() = prefs.getStringSet(IGNORED_CONTACT_SOURCES, hashSetOf(".")) as HashSet
13
set(ignoreContactSources) = prefs.edit().remove(IGNORED_CONTACT_SOURCES).putStringSet(IGNORED_CONTACT_SOURCES, ignoreContactSources).apply()
14
15
var showContactThumbnails: Boolean
0 commit comments