1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 00:25:54 +00:00

quickMenuGo: try/catch block

This commit is contained in:
Andrew Dolgov
2006-03-30 07:27:03 +01:00
parent 8a414837ec
commit bb3423cf99

View File

@@ -487,7 +487,7 @@ function quickMenuChange() {
}
function quickMenuGo(opid) {
try {
if (opid == "qmcPrefs") {
gotoPreferences();
@@ -536,7 +536,9 @@ function quickMenuGo(opid) {
if (opid == "qmcAddFilter") {
displayDlg("quickAddFilter", getActiveFeedId());
}
} catch (e) {
exception_error("quickMenuGo", e);
}
}
function qafAdd() {