1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 15:15:56 +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) { function quickMenuGo(opid) {
try {
if (opid == "qmcPrefs") { if (opid == "qmcPrefs") {
gotoPreferences(); gotoPreferences();
@@ -536,7 +536,9 @@ function quickMenuGo(opid) {
if (opid == "qmcAddFilter") { if (opid == "qmcAddFilter") {
displayDlg("quickAddFilter", getActiveFeedId()); displayDlg("quickAddFilter", getActiveFeedId());
} }
} catch (e) {
exception_error("quickMenuGo", e);
}
} }
function qafAdd() { function qafAdd() {