Changeset

5998:fd1927e51791

mod_push2: fix broken log statement
author Stephen Paul Weber <singpolyma@singpolyma.net>
date Tue, 08 Oct 2024 10:24:39 -0500
parents 5994:1bb8b559f441
children 5999:9db6bad7cc36
files mod_push2/mod_push2.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mod_push2/mod_push2.lua	Thu Oct 03 22:29:03 2024 +0200
+++ b/mod_push2/mod_push2.lua	Tue Oct 08 10:24:39 2024 -0500
@@ -396,7 +396,7 @@
 	for identifier, push_info in pairs(user_push_services) do
 		for _, match in ipairs(push_info.matches) do
 			if match.match == "urn:xmpp:push2:match:archived-with-body" or match.match == "urn:xmpp:push2:match:archived" then
-				identifier_found.log("debug", "Not pushing because we are not archiving this stanza")
+				module:log("debug", "Not pushing because we are not archiving this stanza")
 			else
 				notify_push_services[identifier] = push_info;
 			end