remove logging

This commit is contained in:
Bruno Windels 2020-08-20 10:48:59 +02:00
parent 4b275529f7
commit 229502ca43

View File

@ -162,7 +162,6 @@ export class SyncWriter {
// TODO: perhaps add a small cache here? // TODO: perhaps add a small cache here?
const memberData = await txn.roomMembers.get(this._roomId, userId); const memberData = await txn.roomMembers.get(this._roomId, userId);
if (memberData) { if (memberData) {
console.log("got memberData from store", this._roomId, userId, memberData);
return memberData; return memberData;
} else { } else {
// sometimes the member event isn't included in state, but rather in the timeline, // sometimes the member event isn't included in state, but rather in the timeline,