From 48a7c4a35963a32e4ca20b971f972f0a59f93623 Mon Sep 17 00:00:00 2001 From: Guus der Kinderen Date: Thu, 21 Jul 2022 18:03:41 +0200 Subject: [PATCH] fixes #15: Fix group-based affiliations with MUC rooms. --- changelog.html | 1 + .../openfire/plugin/rest/entity/MUCRoomEntity.java | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/changelog.html b/changelog.html index bf90312ac..21996e0cc 100644 --- a/changelog.html +++ b/changelog.html @@ -47,6 +47,7 @@

Next Release at some date

1.8.3 July 19, 2022

diff --git a/src/java/org/jivesoftware/openfire/plugin/rest/entity/MUCRoomEntity.java b/src/java/org/jivesoftware/openfire/plugin/rest/entity/MUCRoomEntity.java index 78d07d16e..72bd0f9c0 100644 --- a/src/java/org/jivesoftware/openfire/plugin/rest/entity/MUCRoomEntity.java +++ b/src/java/org/jivesoftware/openfire/plugin/rest/entity/MUCRoomEntity.java @@ -294,7 +294,7 @@ public List getMembers() { @XmlElementWrapper(name = "memberGroups") @XmlElement(name = "memberGroup") @JsonProperty(value = "memberGroups") - public List getmemberGroups() { + public List getMemberGroups() { return memberGroups; } @@ -316,7 +316,7 @@ public List getOutcasts() { @XmlElementWrapper(name = "outcastGroups") @XmlElement(name = "outcastGroup") @JsonProperty(value = "outcastGroups") - public List getoutcastGroups() { + public List getOutcastGroups() { return outcastGroups; } @@ -338,7 +338,7 @@ public List getAdmins() { @XmlElementWrapper(name = "adminGroups") @XmlElement(name = "adminGroup") @JsonProperty(value = "adminGroups") - public List getadminGroups() { + public List getAdminGroups() { return adminGroups; }