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
- [#127] - AAdd endpoint that allows for more than one MUC room to be created with one request
+ - [#15] - Fix group-based affiliations with MUC rooms.
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;
}