Fix missing closing tag for identity node in presence stanza

pull/13825/head jitsi-meet_8947
rca 2 years ago committed by Дамян Минков
parent 36045100bf
commit 01a74856a3
  1. 2
      resources/prosody-plugins/util.lib.lua

@ -236,9 +236,9 @@ function update_presence_identity(
if creator_group then
stanza:tag("creator_group"):text(creator_group):up();
end
stanza:up();
end
stanza:up(); -- Close identity tag
end
-- Utility function to check whether feature is present and enabled. Allow

Loading…
Cancel
Save