Use match instead of find, minor performance gain

This commit is contained in:
Zed 2021-12-27 00:03:52 +01:00
parent ffd9843197
commit 759728e363

View file

@ -56,7 +56,7 @@ proc replaceUrl*(url: string; prefs: Prefs; absolute=""): string =
proc getM3u8Url*(content: string): string =
var m: RegexMatch
if content.find(m3u8Regex, m):
if content.match(m3u8Regex, m):
result = content[m.group(0)[0]]
proc proxifyVideo*(manifest: string; proxy: bool): string =