mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-21 14:31:09 +02:00
Handle 403 when inspecting invited users as non-member
This commit is contained in:
parent
e094c32c62
commit
5d0aa8d7f7
@ -52,6 +52,10 @@ export default class GroupStore extends EventEmitter {
|
||||
});
|
||||
this._notifyListeners();
|
||||
}).catch((err) => {
|
||||
// Invited users not visible to non-members
|
||||
if (err.httpStatus === 403) {
|
||||
return;
|
||||
}
|
||||
console.error("Failed to get group invited member list: " + err);
|
||||
this.emit('error', err);
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user