From e4f042a6a725715e63c82b89436f14e4168bc3a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?poljar=20=28Damir=20Jeli=C4=87=29?= Date: Wed, 14 Feb 2018 11:33:28 +0100 Subject: [PATCH] Don't make message sending failures fatal. --- matrix/events.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrix/events.py b/matrix/events.py index d30ac40..8b6d4af 100644 --- a/matrix/events.py +++ b/matrix/events.py @@ -140,6 +140,6 @@ class MatrixSendEvent(MatrixEvent): return MatrixErrorEvent.from_dict( server, "Error sending message", - True, + False, parsed_dict )