diff options
| author | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2010-11-26 08:49:20 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2010-11-26 08:49:20 +0300 |
| commit | beb119a23c357c46cd835355f3b4179a35827c08 (patch) | |
| tree | 89358a82e9096747b73fa574b5c4bd059ee7c685 | |
| parent | 5f8b2573e6aa70144078e854e5fd77b8b5ac554a (diff) | |
handle_rpc_json: silence exception handling
| -rw-r--r-- | tt-rss.js | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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; |