1
0
Fork 0

No Issue - Fixes crash when no valid .leanplum_token is present

master
Jeff Boek 2019-03-12 15:08:49 -07:00
parent 9dc0b4781a
commit fcb75aaa53
1 changed files with 2 additions and 2 deletions

View File

@ -62,8 +62,8 @@ class LeanplumMetricsService(private val application: Application) : MetricsServ
companion object { companion object {
private val LeanplumId: String private val LeanplumId: String
get() = BuildConfig.LEANPLUM_ID get() = BuildConfig.LEANPLUM_ID ?: ""
private val LeanplumToken: String private val LeanplumToken: String
get() = BuildConfig.LEANPLUM_TOKEN get() = BuildConfig.LEANPLUM_TOKEN ?: ""
} }
} }