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

Commit

Permalink
replace "&" with "\x26" in URLs for compatability
Browse files Browse the repository at this point in the history
  • Loading branch information
SoMuchForSubtlety committed Apr 2, 2019
1 parent b43a05a commit 8022937
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion downloadHandling.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func getProperURL(assetID string) string {
urlString = finalURL.Objects[0].Tata.TokenisedURL
}
//debugPrint(urlString)
return urlString
return strings.Replace(urlString, "&", "\x26", -1)
}

//downloads m3u8
Expand Down

0 comments on commit 8022937

Please # to comment.