Handle 403 when inspecting invited users as non-member

pull/21833/head
Luke Barnard 2017-10-27 11:37:45 +01:00
parent e094c32c62
commit 5d0aa8d7f7
1 changed files with 4 additions and 0 deletions

View File

@ -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);
});