From: Matthew Exon Date: Sat, 28 Sep 2019 07:57:46 +0000 (+0200) Subject: Mailstream: remove URL parameters when extracting image filenames X-Git-Tag: 2019.12~26^2 X-Git-Url: https://reisub.nsupdate.info/git/?a=commitdiff_plain;ds=sidebyside;h=1f1f63c239770d191235b213630142ffc801d461;p=friendica-addons.git%2F.git Mailstream: remove URL parameters when extracting image filenames --- diff --git a/mailstream/mailstream.php b/mailstream/mailstream.php index e4abc597..bdd02a49 100644 --- a/mailstream/mailstream.php +++ b/mailstream/mailstream.php @@ -157,12 +157,13 @@ function mailstream_do_images($a, &$item, &$attachments) { preg_match_all("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", $item["body"], $matches1); preg_match_all("/\[img\](.*?)\[\/img\]/ism", $item["body"], $matches2); foreach (array_merge($matches1[3], $matches2[1]) as $url) { + $components = parse_url($url); $cookiejar = tempnam(get_temppath(), 'cookiejar-mailstream-'); $curlResult = Network::fetchUrlFull($url, true, 0, '', $cookiejar); $attachments[$url] = [ 'data' => $curlResult->getBody(), 'guid' => hash("crc32", $url), - 'filename' => basename($url), + 'filename' => basename($components['path']), 'type' => $curlResult->getContentType() ];