1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 22:15:56 +00:00

subscribeToFeed: add ajax exception handler

This commit is contained in:
Andrew Dolgov
2010-11-10 13:14:40 +03:00
parent 6e63a7c306
commit 55a5137307

View File

@@ -1302,13 +1302,15 @@ function subscribeToFeed() {
onComplete: function(transport) {
//dlg_frefresh_callback(transport);
notify('');
try {
var result = transport.responseXML.getElementsByTagName('result')[0];
var rc = parseInt(result.getAttribute('code'));
Form.enable("feed_add_form");
notify('');
switch (rc) {
case 1:
closeInfoBox();
@@ -1352,6 +1354,10 @@ function subscribeToFeed() {
break;
}
} catch (e) {
exception_error("subscribeToFeed", e);
}
} });
} catch (e) {