1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 10:25:56 +00:00

Also match images with query string (size, tokens, etc).

This commit is contained in:
koffieanon
2020-01-04 17:22:58 +01:00
parent e89dd83f05
commit 3a3c74dfa4

View File

@@ -264,7 +264,7 @@ class Af_RedditImgur extends Plugin {
$found = true;
}
if (!$found && (preg_match("/\.(jpg|jpeg|gif|png)(\?[0-9][0-9]*)?$/i", $entry->getAttribute("href")) ||
if (!$found && (preg_match("/\.(jpg|jpeg|gif|png)(\?[0-9][0-9]*)?[$\?]/i", $entry->getAttribute("href")) ||
mb_strpos($entry->getAttribute("href"), "i.reddituploads.com") !== FALSE ||
mb_strpos($this->get_content_type($entry->getAttribute("href")), "image/") !== FALSE)) {