From b050e5f5e8f9ebbeb248e407c2e1fb931e57d910 Mon Sep 17 00:00:00 2001 From: damencho Date: Thu, 24 Jul 2025 14:44:30 +0300 Subject: [PATCH] fix: Fixes table equals missing param name. --- resources/prosody-plugins/util.lib.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/prosody-plugins/util.lib.lua b/resources/prosody-plugins/util.lib.lua index 550fcb14ac..5d8d5290c2 100644 --- a/resources/prosody-plugins/util.lib.lua +++ b/resources/prosody-plugins/util.lib.lua @@ -623,7 +623,7 @@ local function table_compare(old_table, new_table) local modified = {} -- Find removed items (in old but not in new) - for id, _ in pairs(old_table) do + for id, value in pairs(old_table) do if new_table[id] == nil then table.insert(removed, id) elseif new_table[id] ~= value then