comparison plugins/mod_cloud_notify.lua @ 14168:4f4c346e4f39

Merge 13.0->trunk
author Matthew Wild <mwild1@gmail.com>
date Tue, 19 May 2026 19:27:43 +0100
parents f149652cb5ff
children
comparison
equal deleted inserted replaced
14164:78c89ff001bf 14168:4f4c346e4f39
395 end 395 end
396 id2node[stanza_id] = node; 396 id2node[stanza_id] = node;
397 id2identifier[stanza_id] = push_identifier; 397 id2identifier[stanza_id] = push_identifier;
398 module:send_iq(push_publish):next(handle_push_success, handle_push_error):finally(function () 398 module:send_iq(push_publish):next(handle_push_success, handle_push_error):finally(function ()
399 -- unhook iq handlers for this identifier (if possible) 399 -- unhook iq handlers for this identifier (if possible)
400 id2node[stanza.attr.id] = nil; 400 id2node[stanza_id] = nil;
401 id2identifier[stanza.attr.id] = nil; 401 id2identifier[stanza_id] = nil;
402 end); 402 end);
403 pushes = pushes + 1; 403 pushes = pushes + 1;
404 end 404 end
405 end 405 end
406 end 406 end