diff options
author | Mario <mario@mariovavti.com> | 2023-01-12 11:04:03 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-01-12 11:04:03 +0000 |
commit | d092e79ebcfd34c71cc50f2d676eb097482e4d91 (patch) | |
tree | 423492d762ea734f0f918b70dae5d953521690f4 /Zotlabs/Daemon/Notifier.php | |
parent | 16555b93bbe4ef69dbbce8085bb366134f8a5654 (diff) | |
download | volse-hubzilla-d092e79ebcfd34c71cc50f2d676eb097482e4d91.tar.gz volse-hubzilla-d092e79ebcfd34c71cc50f2d676eb097482e4d91.tar.bz2 volse-hubzilla-d092e79ebcfd34c71cc50f2d676eb097482e4d91.zip |
remove fragment in notifier - it should not be required, when processing multiple choice polls sleep some time before calling the notifier
Diffstat (limited to 'Zotlabs/Daemon/Notifier.php')
-rw-r--r-- | Zotlabs/Daemon/Notifier.php | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/Zotlabs/Daemon/Notifier.php b/Zotlabs/Daemon/Notifier.php index f51dfab28..de8597081 100644 --- a/Zotlabs/Daemon/Notifier.php +++ b/Zotlabs/Daemon/Notifier.php @@ -79,10 +79,7 @@ class Notifier { static public $encoded_item = null; static public $channel = null; static public $private = false; - // $fragment can contain additional info to omit de-duplication in the queueworker. - // E.g. if an item is updated many times in a row from different sources (multiple vote updates) the - // update source mid or a timestamp or random string can be added. - static public $fragment = null; + static public function run($argc, $argv) { @@ -107,7 +104,6 @@ class Notifier { self::$encoded_item = null; self::$channel = null; self::$private = false; - self::$fragment = null; $sys = get_sys_channel(); $normal_mode = true; @@ -233,8 +229,6 @@ class Notifier { // Fetch the target item - self::$fragment = $argv[3] ?? ''; - $r = q("SELECT * FROM item WHERE id = %d AND parent != 0", intval($item_id) ); @@ -701,7 +695,7 @@ class Notifier { // This wastes a process if there are no delivery hooks configured, so check this before launching the new process $x = q("select * from hook where hook = 'notifier_normal'"); if ($x) { - Master::Summon(['Deliver_hooks', $target_item['id'], self::$fragment]); + Master::Summon(['Deliver_hooks', $target_item['id']]); } } |