From 297a89c2d220860f08e0c30356adfefe2cfa22cd Mon Sep 17 00:00:00 2001 From: koffieanon Date: Sat, 4 Jan 2020 17:20:33 +0100 Subject: Fix bug processing found due to operator precedence. --- plugins/af_redditimgur/init.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/af_redditimgur/init.php') diff --git a/plugins/af_redditimgur/init.php b/plugins/af_redditimgur/init.php index c8ba4a1b2..555cb0710 100755 --- a/plugins/af_redditimgur/init.php +++ b/plugins/af_redditimgur/init.php @@ -239,10 +239,10 @@ class Af_RedditImgur extends Plugin { } $matches = array(); - if (!$found && preg_match("/youtube\.com\/v\/([\w-]+)/", $entry->getAttribute("href"), $matches) || + if (!$found && (preg_match("/youtube\.com\/v\/([\w-]+)/", $entry->getAttribute("href"), $matches) || preg_match("/youtube\.com\/.*?[\&\?]v=([\w-]+)/", $entry->getAttribute("href"), $matches) || preg_match("/youtube\.com\/watch\?v=([\w-]+)/", $entry->getAttribute("href"), $matches) || - preg_match("/\/\/youtu.be\/([\w-]+)/", $entry->getAttribute("href"), $matches)) { + preg_match("/\/\/youtu.be\/([\w-]+)/", $entry->getAttribute("href"), $matches))) { $vid_id = $matches[1]; @@ -264,9 +264,9 @@ 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) { + mb_strpos($this->get_content_type($entry->getAttribute("href")), "image/") !== FALSE)) { Debug::log("Handling as a picture", Debug::$LOG_VERBOSE); -- cgit v1.2.3