aboutsummaryrefslogtreecommitdiffstats
path: root/include/feedutils.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-01-07 19:53:03 +0100
committerMario Vavti <mario@mariovavti.com>2018-01-07 19:53:03 +0100
commit214fa81ec62eeb8a735d2196373c37e89d02666a (patch)
treeb0dfd9d52d6824210b543ba871933f817504cb22 /include/feedutils.php
parent98fd3118911313c3f365cc535e9357cd92268534 (diff)
parent0d415fb3c9db41ee97b7ce933ebc84eab38a1fa4 (diff)
downloadvolse-hubzilla-214fa81ec62eeb8a735d2196373c37e89d02666a.tar.gz
volse-hubzilla-214fa81ec62eeb8a735d2196373c37e89d02666a.tar.bz2
volse-hubzilla-214fa81ec62eeb8a735d2196373c37e89d02666a.zip
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'include/feedutils.php')
-rw-r--r--include/feedutils.php9
1 files changed, 7 insertions, 2 deletions
diff --git a/include/feedutils.php b/include/feedutils.php
index 4638ef66a..5e48cb1ee 100644
--- a/include/feedutils.php
+++ b/include/feedutils.php
@@ -1801,12 +1801,17 @@ function compat_photos_list($s) {
if($found) {
foreach($matches as $match) {
- $ret[] = [
+ $entry = [
'href' => $match[2],
- 'length' => 0,
'type' => guess_image_type($match[2])
];
+ $sizer = new \Zotlabs\Lib\Img_filesize($match[2]);
+ $size = $sizer->getSize();
+ if(intval($size)) {
+ $entry['length'] = intval($size);
+ }
+ $ret[] = $entry;
}
}