]> git.wh0rd.org - tt-rss.git/commitdiff
handle_rpc_json: silence exception handling
authorAndrew Dolgov <fox@madoka.volgo-balt.ru>
Fri, 26 Nov 2010 05:49:20 +0000 (08:49 +0300)
committerAndrew Dolgov <fox@madoka.volgo-balt.ru>
Fri, 26 Nov 2010 05:49:20 +0000 (08:49 +0300)
tt-rss.js

index a91c38414a7b713ae71fd5de42457082d66baba6..6ba2f86ad7c6328dae6757d271433751a1840946 100644 (file)
--- 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;