parent
6c6386913e
commit
8a6fbe81ab
|
@ -87,7 +87,7 @@ proc proxifyVideo*(manifest: string; proxy: bool): string =
|
||||||
let url =
|
let url =
|
||||||
if line.startsWith("#EXT-X-MAP:URI"): line[16 .. ^2]
|
if line.startsWith("#EXT-X-MAP:URI"): line[16 .. ^2]
|
||||||
else: line
|
else: line
|
||||||
if url[0] == '/':
|
if url.startsWith('/'):
|
||||||
let path = "https://video.twimg.com" & url
|
let path = "https://video.twimg.com" & url
|
||||||
replacements.add (url, if proxy: path.getVidUrl else: path)
|
replacements.add (url, if proxy: path.getVidUrl else: path)
|
||||||
return manifest.multiReplace(replacements)
|
return manifest.multiReplace(replacements)
|
||||||
|
|
Loading…
Reference in New Issue