修复直播状态
This commit is contained in:
parent
78abe9a16b
commit
9d72939d95
@ -354,7 +354,7 @@ public class LiveUtils {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static boolean getLiveState(int roomId) {
|
public static boolean getLiveState(int roomId) {
|
||||||
return liveStateMap.get(roomId);
|
return liveStateMap.getOrDefault(roomId, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void reloadLiveState(int roomId) {
|
public static void reloadLiveState(int roomId) {
|
||||||
@ -363,7 +363,7 @@ public class LiveUtils {
|
|||||||
try {
|
try {
|
||||||
liveStateMap.put(roomId, json.getJSONObject("data").getInteger("live_status") == 1);
|
liveStateMap.put(roomId, json.getJSONObject("data").getInteger("live_status") == 1);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
System.out.println("json = " + json);
|
Log.i("live state = "+json.toString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user