From f74eb7f3437551ac28ec34ec6a228fd138912349 Mon Sep 17 00:00:00 2001
From: Travis Ralston <travpc@gmail.com>
Date: Sun, 25 Feb 2018 11:51:29 -0700
Subject: [PATCH] Make the build happy again

---
 src/matrixroomhandler.ts | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/matrixroomhandler.ts b/src/matrixroomhandler.ts
index 1916c53..cee2ea5 100644
--- a/src/matrixroomhandler.ts
+++ b/src/matrixroomhandler.ts
@@ -201,7 +201,7 @@ export class MatrixRoomHandler {
               });
 
               await this.provisioner.AskBridgePermission(channel, event.sender);
-              await this.provisioner.BridgeMatrixRoom(channel, event.room_id);
+              this.provisioner.BridgeMatrixRoom(channel, event.room_id);
               return this.bridge.getIntent().sendMessage(event.room_id, {
                   msgtype: "m.notice",
                   body: "I have bridged this room to your channel",
@@ -250,7 +250,8 @@ export class MatrixRoomHandler {
               log.error("MatrixRoomHandler", err);
               return this.bridge.getItent().sendMessage(event.room_id, {
                   msgtype: "m.notice",
-                  body: "There was an error unbridging this room. Please try again later or contact the bridge operator.",
+                  body: "There was an error unbridging this room. " +
+                    "Please try again later or contact the bridge operator.",
               });
           }
       } else if (command === "help") {
-- 
GitLab