Throw an error when trying to create a group store with falsey groupId

This commit is contained in:
Luke Barnard 2017-11-06 10:18:10 +00:00
parent 3fd5937687
commit febeb0429e

View file

@ -33,6 +33,9 @@ export default class GroupStore extends EventEmitter {
constructor(matrixClient, groupId) {
super();
if (!groupId) {
throw new Error('GroupStore needs a valid groupId to be created');
}
this.groupId = groupId;
this._matrixClient = matrixClient;
this._summary = {};