mod_muc_mam: Fix reference to "user" in debug message copied from mod_mam
authorKim Alvefur <zash@zash.se>
Thu, 23 Sep 2021 17:50:33 +0200
changeset 11822 c443abff04d8
parent 11821 a67b4d4f8eef
child 11823 f590e3c51eff
mod_muc_mam: Fix reference to "user" in debug message copied from mod_mam
plugins/mod_muc_mam.lua
--- a/plugins/mod_muc_mam.lua	Thu Sep 23 15:53:39 2021 +0200
+++ b/plugins/mod_muc_mam.lua	Thu Sep 23 17:50:33 2021 +0200
@@ -403,7 +403,7 @@
 			end
 		end
 		if not id and (archive.caps and archive.caps.truncate) then
-			module:log("debug", "User '%s' over quota, truncating archive", room_node);
+			module:log("debug", "Room '%s' over quota, truncating archive", room_node);
 			local truncated = archive:delete(room_node, {
 				truncate = archive_truncate;
 			});