Skip to content

Commit 81e584a

Browse files
committed
do not filter out Phone Storage by default
1 parent e390440 commit 81e584a

File tree

1 file changed

+1
-1
lines changed
  • app/src/main/kotlin/com/simplemobiletools/contacts/helpers

1 file changed

+1
-1
lines changed

app/src/main/kotlin/com/simplemobiletools/contacts/helpers/Config.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class Config(context: Context) : BaseConfig(context) {
99
}
1010

1111
var ignoredContactSources: HashSet<String>
12-
get() = prefs.getStringSet(IGNORED_CONTACT_SOURCES, hashSetOf("")) as HashSet
12+
get() = prefs.getStringSet(IGNORED_CONTACT_SOURCES, hashSetOf(".")) as HashSet
1313
set(ignoreContactSources) = prefs.edit().remove(IGNORED_CONTACT_SOURCES).putStringSet(IGNORED_CONTACT_SOURCES, ignoreContactSources).apply()
1414

1515
var showContactThumbnails: Boolean

0 commit comments

Comments
 (0)