Mercurial > prosody-modules
changeset 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 | 2444fb3b05b7 |
files | mod_cloud_notify/mod_cloud_notify.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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