Skip to content

Commit

Permalink
Fix DOT extension.
Browse files Browse the repository at this point in the history
  • Loading branch information
yagop committed Mar 4, 2015
1 parent adf8120 commit 230fbc0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions plugins/images.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ return {
description = "When user sends image URL (ends with png, jpg, jpeg) download and send it to origin.",
usage = "",
patterns = {
"(https?://[%w-_%.%?%.:/%+=&]+.png)$",
"(https?://[%w-_%.%?%.:/%+=&]+.jpg)$",
"(https?://[%w-_%.%?%.:/%+=&]+.jpeg)$",
"(https?://[%w-_%.%?%.:/%+=&]+%.png)$",
"(https?://[%w-_%.%?%.:/%+=&]+%.jpg)$",
"(https?://[%w-_%.%?%.:/%+=&]+%.jpeg)$",
},
run = run
}

end
end

0 comments on commit 230fbc0

Please sign in to comment.