# HG changeset patch # User tmolitor # Date 1561999842 -7200 # Node ID 9639c493f4b90c1220d289414346283c50a4e9fa # Parent c84bbf36c878d2c2541c079bde1f59e0cdeb7620 mod_cloud_notify: fix typo (used || instead of or) diff -r c84bbf36c878 -r 9639c493f4b9 mod_cloud_notify/mod_cloud_notify.lua --- a/mod_cloud_notify/mod_cloud_notify.lua Mon Jul 01 18:49:24 2019 +0200 +++ b/mod_cloud_notify/mod_cloud_notify.lua Mon Jul 01 18:50:42 2019 +0200 @@ -583,7 +583,7 @@ local function send_ping(event) local user = event.user; - local push_services = event.push_services || push_store:get(user); + local push_services = event.push_services or push_store:get(user); handle_notify_request(nil, user, push_services, true); end -- can be used by other modules to ping one or more (or all) push endpoints