aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-06-09 15:24:37 -0700
committerzotlabs <mike@macgirvin.com>2017-06-09 15:24:37 -0700
commit42c9f853a7d878fef7f545b58a744c134baabc02 (patch)
tree3ea96a63343962e4e2c57ae3c0024d3180a9500f /include
parent2a2128503735881b56ab299873a3a740ff937a3e (diff)
downloadvolse-hubzilla-42c9f853a7d878fef7f545b58a744c134baabc02.tar.gz
volse-hubzilla-42c9f853a7d878fef7f545b58a744c134baabc02.tar.bz2
volse-hubzilla-42c9f853a7d878fef7f545b58a744c134baabc02.zip
auto inline embed ostatus image attachments
Diffstat (limited to 'include')
-rw-r--r--include/feedutils.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/feedutils.php b/include/feedutils.php
index c530b7be7..1b7c22407 100644
--- a/include/feedutils.php
+++ b/include/feedutils.php
@@ -613,6 +613,10 @@ function get_atom_elements($feed, $item, &$author) {
if(! $type)
$type = 'application/octet-stream';
+ if(($ostatus_protocol) && (strpos($type,'image') === 0) && (strpos($res['body'],$link) === false) && (strpos($link,'http') === 0)) {
+ $res['body'] .= "\n\n" . '[img]' . $link . '[/img]';
+ }
+
$res['attach'][] = array('href' => $link, 'length' => $len, 'type' => $type, 'title' => $title );
}
}