diff --git a/src/matrix/storage/idb/stores/InviteStore.js b/src/matrix/storage/idb/stores/InviteStore.js index a3c7517a..41a2351a 100644 --- a/src/matrix/storage/idb/stores/InviteStore.js +++ b/src/matrix/storage/idb/stores/InviteStore.js @@ -15,17 +15,17 @@ limitations under the License. */ export class InviteStore { - constructor(inviteStore) { - this._inviteStore = inviteStore; - } + constructor(inviteStore) { + this._inviteStore = inviteStore; + } - getAll() { - return this._inviteStore.selectAll(); - } + getAll() { + return this._inviteStore.selectAll(); + } - set(invite) { - return this._inviteStore.put(invite); - } + set(invite) { + return this._inviteStore.put(invite); + } remove(roomId) { this._store.delete(roomId);