|
@@ -322,7 +322,7 @@ public class JsInterfaceAccomPanyUtils extends Object {
|
|
|
if (TextUtils.equals("cloudAccompanyMessage", api)) {
|
|
|
JSONObject content = jsonObject.getJSONObject("content");
|
|
|
if (onListener != null) {
|
|
|
- String accompanyUrl = content.optString("accompanyUrl");
|
|
|
+ String accompanyUrl = content.isNull("accompanyUrl") ? null : content.optString("accompanyUrl");
|
|
|
onListener.saveAccompanimentMp3(accompanyUrl);
|
|
|
}
|
|
|
return;
|