Skip to content
This repository has been archived by the owner on Oct 28, 2023. It is now read-only.

Commit

Permalink
Fix cutout of dash
Browse files Browse the repository at this point in the history
  • Loading branch information
HaarigerHarald committed Feb 14, 2018
1 parent a172d06 commit 707e836
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -273,8 +273,8 @@ private SparseArray<YtFile> getStreamUrls() throws IOException, InterruptedExcep
// exists int the stream_map.
boolean sigEnc = true;
if(streamMap != null && streamMap.contains(STREAM_MAP_STRING)){
streamMap = streamMap.substring(streamMap.indexOf(STREAM_MAP_STRING));
mat = patIsSigEnc.matcher(streamMap);
String streamMapSub = streamMap.substring(streamMap.indexOf(STREAM_MAP_STRING));
mat = patIsSigEnc.matcher(streamMapSub);
if(!mat.find())
sigEnc = false;
}
Expand Down

0 comments on commit 707e836

Please sign in to comment.