mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 19:38:08 +00:00
Fixed default debug mode value
This commit is contained in:
parent
dbdb36eb67
commit
3786ac3ccb
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…
Add table
Reference in a new issue