Fixed default debug mode value
This commit is contained in:
parent
9c28189d7a
commit
1ad5d31426
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ class CorePreferences constructor(private val context: Context) {
|
|||
/* App settings */
|
||||
|
||||
var debugLogs: Boolean
|
||||
get() = config.getBool("app", "debug", BuildConfig.DEBUG)
|
||||
get() = config.getBool("app", "debug", org.linphone.BuildConfig.DEBUG)
|
||||
set(value) {
|
||||
config.setBool("app", "debug", value)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue