1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-03 13:27:11 +00:00

refactor error reporting to AppBase; keep exception_error() for now as a shim

This commit is contained in:
Andrew Dolgov
2018-12-03 13:38:13 +03:00
parent a049b5bd88
commit 71fc6d45bd
17 changed files with 222 additions and 267 deletions

View File

@@ -135,13 +135,13 @@
f.sub_btn.disabled = true;
}
} catch (e) {
exception_error("checkUsername_callback", e);
App.Error.report(e);
}
} });
} catch (e) {
exception_error("checkUsername", e);
App.Error.report(e);
}
return false;
@@ -171,7 +171,7 @@
return true;
} catch (e) {
exception_error("validateRegForm", e);
alert(e.stack);
return false;
}
}