forked from rDrama/rDrama
1
0
Fork 0
Aevann 2024-06-04 13:12:25 +03:00
parent 1fd4aafb8b
commit 73f06a9227
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ def normalize_urls_runtime(body, v):
if v and v.imgsed:
body = instagram_to_imgsed_regex.sub(r'\1https://imgsed.com/', body)
if not v or v.controversial:
if v and v.controversial:
body = controversial_regex.sub(controversial_link_matcher, body)
return body