mirror of
https://github.com/zedeus/nitter.git
synced 2025-03-04 18:11:19 +00:00
Fix missing parentheses in Imgur regex
This commit is contained in:
parent
1a804dc6e2
commit
8670a71c30
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ let
|
|||
# Images aren't supported due to errors from Teddit when the image
|
||||
# wasn't first displayed via a post on the Teddit instance.
|
||||
|
||||
imgurRegex = re"(i|i.stack)\.)?imgur.com"
|
||||
imgurRegex = re"((i|i.stack)\.)?imgur.com"
|
||||
|
||||
wwwRegex = re"https?://(www[0-9]?\.)?"
|
||||
m3u8Regex = re"""url="(.+.m3u8)""""
|
||||
|
|
Loading…
Reference in a new issue