diff options
author | Mario <mario@mariovavti.com> | 2023-04-21 10:34:55 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-04-21 10:34:55 +0000 |
commit | 84e25e8fd2e321c6d40230d737bf5dd495f1da0c (patch) | |
tree | f51285aee4b247866910cee7c316b77ce655ea81 /Zotlabs/Lib/Libzot.php | |
parent | 39e14eb95c0b88c6905c50816149d13a0c9746e9 (diff) | |
download | volse-hubzilla-84e25e8fd2e321c6d40230d737bf5dd495f1da0c.tar.gz volse-hubzilla-84e25e8fd2e321c6d40230d737bf5dd495f1da0c.tar.bz2 volse-hubzilla-84e25e8fd2e321c6d40230d737bf5dd495f1da0c.zip |
Fetch conversations in the background. Otherwise it might sgnificantly delay delivery
Diffstat (limited to 'Zotlabs/Lib/Libzot.php')
-rw-r--r-- | Zotlabs/Lib/Libzot.php | 2 |
1 files changed, 1 insertions, 1 deletions
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; |