Revert "Use match instead of find, minor performance gain"

This reverts commit 759728e363.
This commit is contained in:
Zed 2021-12-27 00:10:42 +01:00
parent 759728e363
commit 5e5e290acc
1 changed files with 1 additions and 1 deletions

View File

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