From 712540db35178d8654017a4d6164ab7159a06614 Mon Sep 17 00:00:00 2001
From: Aidan Epstein <aidan@jmad.org>
Date: Sat, 28 Sep 2024 12:38:42 -0700
Subject: MUC: Fix error with nonlegacy hats.

---
 plugins/muc/hats.lib.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugins/muc/hats.lib.lua b/plugins/muc/hats.lib.lua
index 492dc72c..7eb71eb4 100644
--- a/plugins/muc/hats.lib.lua
+++ b/plugins/muc/hats.lib.lua
@@ -25,7 +25,7 @@ module:hook("muc-build-occupant-presence", function (event)
 			hats_el:tag("hat", { uri = hat_id, title = hat_data.title }):up();
 
 			if hats_compat then
-				if not hats_el then
+				if not legacy_hats_el then
 					legacy_hats_el = st.stanza("hats", { xmlns = xmlns_hats_legacy });
 				end
 				legacy_hats_el:tag("hat", { uri = hat_id, title = hat_data.title }):up();
-- 
cgit v1.2.3