From: Andrew Dolgov Date: Sun, 12 Feb 2017 17:23:32 +0000 (+0300) Subject: fix previous, again X-Git-Tag: 17.4~40 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=046a0cc7c87edeaf16f54f09f965d0ded2d7bbcb;p=tt-rss.git fix previous, again --- diff --git a/plugins/af_zz_imgproxy/init.php b/plugins/af_zz_imgproxy/init.php index 9ef813ce..2102370e 100644 --- a/plugins/af_zz_imgproxy/init.php +++ b/plugins/af_zz_imgproxy/init.php @@ -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);