1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-26 17:03:12 +03:00

remove commented out logging

This commit is contained in:
Bruno Windels
2020-02-13 14:36:18 +01:00
parent 91b6499815
commit 0d41f6aafc

View File

@@ -305,7 +305,6 @@ export class InRoomRequests {
getRequest(event) { getRequest(event) {
const roomId = event.getRoomId(); const roomId = event.getRoomId();
const txnId = InRoomChannel.getTransactionId(event); const txnId = InRoomChannel.getTransactionId(event);
// console.log(`looking for request in room ${roomId} with txnId ${txnId} for an ${event.getType()} from ${event.getSender()}...`);
return this._getRequestByTxnId(roomId, txnId); return this._getRequestByTxnId(roomId, txnId);
} }