From 4e170a2831fa23fdc7ab5911b50afcfd2f8122a1 Mon Sep 17 00:00:00 2001
From: Matthew Hodgson <matthew@matrix.org>
Date: Sat, 7 Nov 2015 20:16:05 +0000
Subject: [PATCH] fix onRoomTags signature

---
 src/controllers/organisms/RoomList.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/controllers/organisms/RoomList.js b/src/controllers/organisms/RoomList.js
index 792fa04f..35d1774a 100644
--- a/src/controllers/organisms/RoomList.js
+++ b/src/controllers/organisms/RoomList.js
@@ -110,7 +110,7 @@ module.exports = {
         this.refreshRoomList();
     },
 
-    onRoomTags: function(room) {
+    onRoomTags: function(event, room) {
         this.refreshRoomList();        
     },