]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
$url should've been $file->getUrl()
authorMikael Nordfeldth <mmn@hethane.se>
Tue, 15 Dec 2015 11:30:35 +0000 (12:30 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Tue, 15 Dec 2015 11:31:10 +0000 (12:31 +0100)
plugins/StoreRemoteMedia/StoreRemoteMediaPlugin.php

index 25f3b31f71b33ae94d1213f93ea60270729be5c3..e3b95410be0a409a1e2101ef8a271c51fa5c4047 100644 (file)
@@ -78,10 +78,10 @@ class StoreRemoteMediaPlugin extends Plugin
 
         // First we download the file to memory and test whether it's actually an image file
         $imgData = HTTPClient::quickGet($file->getUrl());
-        common_debug(sprintf('Downloading remote file id==%u with URL: %s', $file->id, $file->url));
+        common_debug(sprintf('Downloading remote file id==%u with URL: %s', $file->id, $file->getUrl()));
         $info = @getimagesizefromstring($imgData);
         if ($info === false) {
-            throw new UnsupportedMediaException(_('Remote file format was not identified as an image.'), $url);
+            throw new UnsupportedMediaException(_('Remote file format was not identified as an image.'), $file->getUrl());
         } elseif (!$info[0] || !$info[1]) {
             throw new UnsupportedMediaException(_('Image file had impossible geometry (0 width or height)'));
         }