Fix more wrong mimetypes

This commit is contained in:
Zed 2019-10-21 07:49:43 +02:00
parent 030d649300
commit 4104bfcba9
1 changed files with 2 additions and 1 deletions

View File

@ -10,6 +10,7 @@ const
"pbs.twimg.com",
"video.twimg.com"
]
badExts = @["1500x500", "jpgn", "jpg:", "jpg_"]
proc getHmac*(data: string): string =
($hmac(sha256, key, data))[0 .. 12]
@ -29,7 +30,7 @@ proc getPicUrl*(link: string): string =
proc cleanFilename*(filename: string): string =
const reg = re"[^A-Za-z0-9._-]"
result = filename.replace(reg, "_")
if "1500x500" in result or "name_orig" in result:
if badExts.anyIt(it in result):
result &= ".jpg"
proc filterParams*(params: Table): seq[(string, string)] =