From e80b253581517c94f6b85bcf6ca93fe8afe4a112 Mon Sep 17 00:00:00 2001 From: Half-Shot <will@half-shot.uk> Date: Thu, 22 Aug 2019 11:36:27 +0100 Subject: [PATCH] Remove EventUnknonwError for now --- src/matrixeventprocessor.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/matrixeventprocessor.ts b/src/matrixeventprocessor.ts index dad2ca4..9fd9d1c 100644 --- a/src/matrixeventprocessor.ts +++ b/src/matrixeventprocessor.ts @@ -150,7 +150,8 @@ export class MatrixEventProcessor { } return; } - throw new Unstable.EventUnknownError(`${event.event_id} not processed by bridge`); + log.verbose(`${event.event_id} not processed by bridge`); + //throw new Unstable.EventUnknownError(`${event.event_id} not processed by bridge`); } public async HandleEncryptionWarning(roomId: string): Promise<void> { -- GitLab