Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
hsklia committed Aug 9, 2018
1 parent 5a7ed44 commit df82581
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,6 @@ public void downloadManifest() throws Exception {

String mimeType = set.getAttributes().getNamedItem("mimeType") != null ? set.getAttributes().getNamedItem("mimeType").getNodeValue() : null;
remoteAdaptationSet.lang = set.getAttributes().getNamedItem("lang") != null ? set.getAttributes().getNamedItem("lang").getNodeValue() : null;
remoteAdaptationSet.id = set.getAttributes().getNamedItem("id").getNodeValue();

if(set == null) continue;

Expand Down Expand Up @@ -438,7 +437,7 @@ else if (mimeType.contains("text")) {
continue;
}

remoteTrack.id = setChild.getAttributes().getNamedItem("id").getNodeValue();
//remoteTrack.id = setChild.getAttributes().getNamedItem("id").getNodeValue();
remoteTrack.mimeType = trackMimeType;
remoteTrack.bandwidth = Long.parseLong(setChild.getAttributes().getNamedItem("bandwidth").getNodeValue());

Expand Down

0 comments on commit df82581

Please sign in to comment.