diff options
author | redmatrix <git@macgirvin.com> | 2016-07-01 20:34:00 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-07-01 20:34:00 -0700 |
commit | 59474673395242f472124968e962702fb6b5f023 (patch) | |
tree | 3ecf3d5719d1943061b0be81851274f400aad3a3 /Zotlabs/Module | |
parent | bb5ec8cfb89bc5cc1532ffacee22e21aa9415e23 (diff) | |
download | volse-hubzilla-59474673395242f472124968e962702fb6b5f023.tar.gz volse-hubzilla-59474673395242f472124968e962702fb6b5f023.tar.bz2 volse-hubzilla-59474673395242f472124968e962702fb6b5f023.zip |
use small photo for Diaspora attribution correction; the medium looks awkward in the D* stream.
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Tagger.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Zotlabs/Module/Tagger.php b/Zotlabs/Module/Tagger.php index 0a46cf56d..e1ed111a1 100644 --- a/Zotlabs/Module/Tagger.php +++ b/Zotlabs/Module/Tagger.php @@ -129,6 +129,15 @@ class Tagger extends \Zotlabs\Web\Controller { store_item_tag($item['uid'],$item['id'],TERM_OBJ_POST,TERM_COMMUNITYTAG,$term,$tagid); $ret = post_activity_item($arr); + + $r = $ret['item']; + if($r) { + build_sync_packet(local_channel(),[ + 'item' => [ + encode_item($,true) + ] + ]); + } if($ret['success']) \Zotlabs\Daemon\Master::Summon(array('Notifier','tag',$ret['activity']['id'])); |