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 bb7178b commit 2ecca96Copy full SHA for 2ecca96
app/src/main/kotlin/com/simplemobiletools/smsmessenger/helpers/Config.kt
@@ -20,7 +20,7 @@ class Config(context: Context) : BaseConfig(context) {
20
21
var enableDeliveryReports: Boolean
22
get() = prefs.getBoolean(ENABLE_DELIVERY_REPORTS, true)
23
- set(showCharacterCounter) = prefs.edit().putBoolean(ENABLE_DELIVERY_REPORTS, showCharacterCounter).apply()
+ set(enableDeliveryReports) = prefs.edit().putBoolean(ENABLE_DELIVERY_REPORTS, enableDeliveryReports).apply()
24
25
var lockScreenVisibilitySetting: Int
26
get() = prefs.getInt(LOCK_SCREEN_VISIBILITY, LOCK_SCREEN_SENDER_MESSAGE)
0 commit comments