BastliBridge

A bot framework bridgin multiple IM protocols, and mail
git clone git://xatko.vsos.ethz.ch/BastliBridge.git
Log | Files | Refs | Submodules

commit b3854ef2c59a136fdf2c9397451d4d2848f58750
parent aaaa8ae06bbf6f595fc50966cfcd0d6481544c86
Author: Dominik Schmidt <das1993@hotmail.com>
Date:   Wed,  5 Dec 2018 10:53:14 +0100

Turn off exception handling in command engine for telegram

Diffstat:
src/bastlibridge/interfaces/telegram.d | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/bastlibridge/interfaces/telegram.d b/src/bastlibridge/interfaces/telegram.d @@ -62,11 +62,10 @@ final class Telegram: QueuedEndpoint{ } else{ auto s=msg.findSplit(" "); - globalCommands.execute(s[0][1..$], get_msg(), s[2]); + globalCommands.execute(s[0][1..$], get_msg(), s[2], false); } } catch(Exception e){ - warning(e.to!string); } }