do not filter out Phone Storage by default

This commit is contained in:
tibbi
2018-05-09 15:46:01 +02:00
parent e39044087b
commit 81e584a42b

View File

@ -9,7 +9,7 @@ class Config(context: Context) : BaseConfig(context) {
}
var ignoredContactSources: HashSet<String>
get() = prefs.getStringSet(IGNORED_CONTACT_SOURCES, hashSetOf("")) as HashSet
get() = prefs.getStringSet(IGNORED_CONTACT_SOURCES, hashSetOf(".")) as HashSet
set(ignoreContactSources) = prefs.edit().remove(IGNORED_CONTACT_SOURCES).putStringSet(IGNORED_CONTACT_SOURCES, ignoreContactSources).apply()
var showContactThumbnails: Boolean