Skip to content

Commit

Permalink
Settings: Disable checkin by default
Browse files Browse the repository at this point in the history
Fixes #1868
  • Loading branch information
mar-v-in committed Jan 15, 2023
1 parent 077c686 commit 0284918
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class SettingsProvider : ContentProvider() {

private fun queryCheckIn(p: Array<out String>): Cursor = MatrixCursor(p).addRow(p) { key ->
when (key) {
CheckIn.ENABLED -> getSettingsBoolean(key, true)
CheckIn.ENABLED -> getSettingsBoolean(key, false)
CheckIn.ANDROID_ID -> checkInPrefs.getLong(key, 0)
CheckIn.DIGEST -> checkInPrefs.getString(key, CheckIn.INITIAL_DIGEST)
?: CheckIn.INITIAL_DIGEST
Expand Down

0 comments on commit 0284918

Please sign in to comment.