From 8ec1c3ecf410eb266efd1f574016a2c66ea07e78 Mon Sep 17 00:00:00 2001 From: David Baker Date: Tue, 26 Sep 2017 14:58:49 +0100 Subject: [PATCH] lint --- src/stores/GroupSummaryStore.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stores/GroupSummaryStore.js b/src/stores/GroupSummaryStore.js index d066f44b40..aa6e74529b 100644 --- a/src/stores/GroupSummaryStore.js +++ b/src/stores/GroupSummaryStore.js @@ -69,9 +69,9 @@ export default class GroupSummaryStore extends EventEmitter { .then(this._fetchSummary.bind(this)); } - setGroupPublicity(is_published) { + setGroupPublicity(isPublished) { return this._matrixClient - .setGroupPublicity(this._groupId, is_published) + .setGroupPublicity(this._groupId, isPublished) .then(this._fetchSummary.bind(this)); } }