We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a0bd53 commit ef0e7f1Copy full SHA for ef0e7f1
VideoOS/VenvyLibrary/src/main/java/cn/com/venvy/CommonParam.java
@@ -78,9 +78,7 @@ public static JSONObject getCommonParamJson(String appKey) {
78
paramMap.put(MAC, macAddress);
79
}
80
String imsi = VenvyDeviceUtil.getIMSI(context);
81
- if (!TextUtils.isEmpty(imsi)) {
82
- paramMap.put(IMSI, imsi);
83
- }
+ paramMap.put(IMSI, TextUtils.isEmpty(imsi) ? " " : imsi);
84
return new JSONObject(paramMap);
85
86
0 commit comments