From: Andrew Dolgov Date: Fri, 26 Nov 2010 05:49:20 +0000 (+0300) Subject: handle_rpc_json: silence exception handling X-Git-Tag: 1.5.0~39 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=beb119a23c357c46cd835355f3b4179a35827c08;p=tt-rss.git handle_rpc_json: silence exception handling --- diff --git a/tt-rss.js b/tt-rss.js index a91c3841..6ba2f86a 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;