[FIX] Android crashing on receive a notification (#2415)
This commit is contained in:
parent
0c55d15378
commit
a07b4cf81d
|
@ -67,15 +67,17 @@ public class Ejson {
|
||||||
}
|
}
|
||||||
|
|
||||||
public String token() {
|
public String token() {
|
||||||
if (mmkv != null) {
|
String userId = userId();
|
||||||
return mmkv.decodeString(TOKEN_KEY.concat(userId()));
|
if (mmkv != null && userId != null) {
|
||||||
|
return mmkv.decodeString(TOKEN_KEY.concat(userId));
|
||||||
}
|
}
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
public String userId() {
|
public String userId() {
|
||||||
if (mmkv != null) {
|
String serverURL = serverURL();
|
||||||
return mmkv.decodeString(TOKEN_KEY.concat(serverURL()));
|
if (mmkv != null && serverURL != null) {
|
||||||
|
return mmkv.decodeString(TOKEN_KEY.concat(serverURL));
|
||||||
}
|
}
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue