diff options
author | zotlabs <mike@macgirvin.com> | 2017-07-10 20:18:33 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-07-10 20:18:33 -0700 |
commit | 2d63bbb91e97d3a54440564620ef3093ecbe71fb (patch) | |
tree | 2f0828a83cfd34cb1303d18034e1c9e1d197c7be /Zotlabs/Module/React.php | |
parent | e3734328eb7393bbdb76ce195d735ab48aa87324 (diff) | |
download | volse-hubzilla-2d63bbb91e97d3a54440564620ef3093ecbe71fb.tar.gz volse-hubzilla-2d63bbb91e97d3a54440564620ef3093ecbe71fb.tar.bz2 volse-hubzilla-2d63bbb91e97d3a54440564620ef3093ecbe71fb.zip |
prevent expiration of conversations you are involved with - allows you to find your own comments months from now
Diffstat (limited to 'Zotlabs/Module/React.php')
-rw-r--r-- | Zotlabs/Module/React.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Zotlabs/Module/React.php b/Zotlabs/Module/React.php index ed4f87e7e..6cd79c952 100644 --- a/Zotlabs/Module/React.php +++ b/Zotlabs/Module/React.php @@ -39,6 +39,10 @@ class React extends \Zotlabs\Web\Controller { $n['author_xchan'] = $channel['channel_hash']; $x = item_store($n); + + if(local_channel()) + retain_item($postid); + if($x['success']) { $nid = $x['item_id']; \Zotlabs\Daemon\Master::Summon(array('Notifier','like',$nid)); |