From 5552d40ec23cc653fbed399fb1019d8d9449c6f9 Mon Sep 17 00:00:00 2001 From: Tor Hveem Date: Wed, 5 Mar 2014 11:22:03 +0100 Subject: [PATCH] Fix bufferlist not working after reconnect --- js/glowingbear.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/js/glowingbear.js b/js/glowingbear.js index 8203827..e155346 100644 --- a/js/glowingbear.js +++ b/js/glowingbear.js @@ -631,7 +631,9 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', '$store', '$timeout', }); $rootScope.$on('relayDisconnect', function() { - models.reinitialize(); + // this reinitialze just breaks the bufferlist upon reconnection. + // Disabled it until it's fully investigated and fixed + //models.reinitialize(); }); $scope.showSidebar = true;