Fix image cache skipping files with queries

This commit is contained in:
Zed 2019-06-24 01:59:52 +02:00
parent baa936894d
commit 2e303719f2
1 changed files with 5 additions and 5 deletions

View File

@ -51,11 +51,11 @@ routes:
cond "twimg" in @"url"
let
url = decodeUrl(@"url")
path = parseUri(url).path.split("/")[2 .. ^1].join("/")
filename = cacheDir / cleanFilename(path)
uri = parseUri(decodeUrl(@"url"))
path = uri.path.split("/")[2 .. ^1].join("/")
filename = cacheDir / cleanFilename(path & uri.query)
if getHmac(url) != @"sig":
if getHmac($uri) != @"sig":
resp showError("Failed to verify signature")
if not existsDir(cacheDir):
@ -63,7 +63,7 @@ routes:
if not existsFile(filename):
let client = newAsyncHttpClient()
await client.downloadFile(url, filename)
await client.downloadFile($uri, filename)
client.close()
sendFile(filename)