Fix DOT extension.

This commit is contained in:
Yago 2015-03-04 23:22:00 +01:00
parent adf8120c70
commit 230fbc0177

View File

@ -10,11 +10,11 @@ return {
description = "When user sends image URL (ends with png, jpg, jpeg) download and send it to origin.", description = "When user sends image URL (ends with png, jpg, jpeg) download and send it to origin.",
usage = "", usage = "",
patterns = { patterns = {
"(https?://[%w-_%.%?%.:/%+=&]+.png)$", "(https?://[%w-_%.%?%.:/%+=&]+%.png)$",
"(https?://[%w-_%.%?%.:/%+=&]+.jpg)$", "(https?://[%w-_%.%?%.:/%+=&]+%.jpg)$",
"(https?://[%w-_%.%?%.:/%+=&]+.jpeg)$", "(https?://[%w-_%.%?%.:/%+=&]+%.jpeg)$",
}, },
run = run run = run
} }
end end