@@ -10,6 +10,7 @@
- Add an occupants filter to the MUC sidebar
- Fix: MUC occupant list does not sort itself on nicknames or roles changes
- Fix: refresh the MUC sidebar when participants collection is sorted
+- Fix: room information not correctly refreshed when modifications are made by other users
### Breaking changes:
@@ -1829,7 +1829,7 @@ class MUC extends ChatBox {
// 173: room now semi-anonymous
// 174: room now fully anonymous
const codes = ['104', '170', '171', '172', '173', '174'];
- if (sizzle('status', stanza).filter(e => codes.includes(e.getAttribute('status'))).length) {
+ if (sizzle('status', stanza).filter(e => codes.includes(e.getAttribute('code'))).length) {
this.refreshDiscoInfo();
}