fix previous, again

This commit is contained in:
Andrew Dolgov 2017-02-12 20:23:32 +03:00
parent bc83dcb381
commit 046a0cc7c8
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ class Af_Zz_ImgProxy extends Plugin {
}
function hook_enclosure_entry($enc) {
if (preg_match("/image/", $enc["type"]) || preg_match("/\.(jpg|png|gif|bmp)/i", $enc["filename"])) {
if (preg_match("/image/", $enc["content_type"]) || preg_match("/\.(jpe?g|png|gif|bmp)$/i", $enc["filename"])) {
$proxy_all = $this->host->get($this, "proxy_all");
$enc["content_url"] = $this->rewrite_url_if_needed($enc["content_url"], $proxy_all);