Skip to content

Commit 0284918

Browse files
committed
Settings: Disable checkin by default
Fixes #1868
1 parent 077c686 commit 0284918

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

play-services-base/core/src/main/kotlin/org/microg/gms/settings/SettingsProvider.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ class SettingsProvider : ContentProvider() {
9393

9494
private fun queryCheckIn(p: Array<out String>): Cursor = MatrixCursor(p).addRow(p) { key ->
9595
when (key) {
96-
CheckIn.ENABLED -> getSettingsBoolean(key, true)
96+
CheckIn.ENABLED -> getSettingsBoolean(key, false)
9797
CheckIn.ANDROID_ID -> checkInPrefs.getLong(key, 0)
9898
CheckIn.DIGEST -> checkInPrefs.getString(key, CheckIn.INITIAL_DIGEST)
9999
?: CheckIn.INITIAL_DIGEST

0 commit comments

Comments
 (0)