Make sure the playlist is not empty when checking the online state
This commit is contained in:
parent
9647f1160f
commit
2a74761c54
|
@ -71,7 +71,12 @@ public class BongaCamsModel extends AbstractModel {
|
||||||
String url = getStreamUrl();
|
String url = getStreamUrl();
|
||||||
Request req = new Request.Builder().url(url).build();
|
Request req = new Request.Builder().url(url).build();
|
||||||
try(Response resp = site.getHttpClient().execute(req)) {
|
try(Response resp = site.getHttpClient().execute(req)) {
|
||||||
return resp.isSuccessful();
|
if(resp.isSuccessful()) {
|
||||||
|
String body = resp.body().string();
|
||||||
|
return body.contains("#EXT-X-STREAM-INF");
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue