forked from j62/ctbrec
1
0
Fork 0

Print out master playlist URL for LiveJasmin

This commit is contained in:
0xboobface 2019-01-17 10:53:37 +01:00
parent dd2b8041d7
commit 3e4483aabd
1 changed files with 1 additions and 0 deletions

View File

@ -112,6 +112,7 @@ public class LiveJasminModel extends AbstractModel {
@Override
public List<StreamSource> getStreamSources() throws IOException, ExecutionException, ParseException, PlaylistException {
String masterUrl = getMasterPlaylistUrl();
LOG.debug("Master playlist: {}", masterUrl);
List<StreamSource> streamSources = new ArrayList<>();
Request req = new Request.Builder().url(masterUrl).build();
try(Response response = site.getHttpClient().execute(req)) {