pull/21833/head
David Baker 2017-09-26 14:58:49 +01:00
parent 8d0983ab02
commit 8ec1c3ecf4
1 changed files with 2 additions and 2 deletions

View File

@ -69,9 +69,9 @@ export default class GroupSummaryStore extends EventEmitter {
.then(this._fetchSummary.bind(this)); .then(this._fetchSummary.bind(this));
} }
setGroupPublicity(is_published) { setGroupPublicity(isPublished) {
return this._matrixClient return this._matrixClient
.setGroupPublicity(this._groupId, is_published) .setGroupPublicity(this._groupId, isPublished)
.then(this._fetchSummary.bind(this)); .then(this._fetchSummary.bind(this));
} }
} }