[2.15.0] debug setting view bug

This commit is contained in:
zhongchao
2023-03-16 19:16:08 +08:00
parent ca37198966
commit fe2d3c47c8
4 changed files with 26 additions and 9 deletions

View File

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