From beb119a23c357c46cd835355f3b4179a35827c08 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 26 Nov 2010 08:49:20 +0300 Subject: [PATCH] handle_rpc_json: silence exception handling --- tt-rss.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tt-rss.js b/tt-rss.js index a91c38414..6ba2f86ad 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -1176,7 +1176,9 @@ function handle_rpc_json(transport, scheduled_call) { } } catch (e) { - exception_error("handle_rpc_json", e, transport); + notify_error("Error communicating with server."); + console.log(e); + //exception_error("handle_rpc_json", e, transport); } return true;