diff options
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Daemon/Zotconvo.php | 31 | ||||
-rw-r--r-- | Zotlabs/Lib/Libzot.php | 2 |
2 files changed, 32 insertions, 1 deletions
diff --git a/Zotlabs/Daemon/Zotconvo.php b/Zotlabs/Daemon/Zotconvo.php new file mode 100644 index 000000000..3d6162473 --- /dev/null +++ b/Zotlabs/Daemon/Zotconvo.php @@ -0,0 +1,31 @@ +<?php + +namespace Zotlabs\Daemon; + +use Zotlabs\Lib\Libzot; + +class Zotconvo { + + static public function run($argc, $argv) { + + logger('Zotconvo invoked: ' . print_r($argv, true)); + + if ($argc != 3) { + return; + } + + $channel_id = intval($argv[1]); + $mid = $argv[2]; + + $channel = channelx_by_n($channel_id); + + if (!$channel) { + return; + } + + Libzot::fetch_conversation($channel, $mid); + + return; + + } +} diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php index 59fa863da..2feddd378 100644 --- a/Zotlabs/Lib/Libzot.php +++ b/Zotlabs/Lib/Libzot.php @@ -1722,7 +1722,7 @@ class Libzot { // this is just an exercise in futility. if (perm_is_allowed($channel['channel_id'], $sender, 'send_stream')) { - self::fetch_conversation($channel, $arr['parent_mid']); + Master::Summon(['Zotconvo', $channel['channel_id'], $arr['parent_mid']]); } continue; |