[m1-p-1.1.0] fix bug of debug setting view

This commit is contained in:
zhongchao
2023-03-16 19:03:31 +08:00
parent 19f88c597a
commit 0fc8ebd69c
2 changed files with 18 additions and 3 deletions

View File

@@ -32,7 +32,11 @@ object CallerTelematicManager {
}
fun getServerToken(): String {
return providerApi?.getServerToken() ?: ""
providerApi?.let {
return it.getServerToken()?:""
}.also{
return ""
}
}
/**