comparison mod_cloud_notify/mod_cloud_notify.lua @ 3627:9639c493f4b9

mod_cloud_notify: fix typo (used || instead of or)
author tmolitor <thilo@eightysoft.de>
date Mon, 01 Jul 2019 18:50:42 +0200
parents c84bbf36c878
children 675726ab06d3
comparison
equal deleted inserted replaced
3626:c84bbf36c878 3627:9639c493f4b9
581 module:hook("smacks-ack-delayed", ack_delayed); 581 module:hook("smacks-ack-delayed", ack_delayed);
582 module:hook("archive-message-added", archive_message_added); 582 module:hook("archive-message-added", archive_message_added);
583 583
584 local function send_ping(event) 584 local function send_ping(event)
585 local user = event.user; 585 local user = event.user;
586 local push_services = event.push_services || push_store:get(user); 586 local push_services = event.push_services or push_store:get(user);
587 handle_notify_request(nil, user, push_services, true); 587 handle_notify_request(nil, user, push_services, true);
588 end 588 end
589 -- can be used by other modules to ping one or more (or all) push endpoints 589 -- can be used by other modules to ping one or more (or all) push endpoints
590 module:hook("cloud-notify-ping", send_ping); 590 module:hook("cloud-notify-ping", send_ping);
591 591