summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-05-17 17:25:41 +0100
committerAndrew Dolgov <[email protected]>2008-05-17 17:25:41 +0100
commit438f2ce922470a1421362ae2718480713de21011 (patch)
tree30a13990eaf90ed65c352cf9e41c20b74f516301 /tt-rss.js
parentdcbeb0e34786b30e2250c124dff96f40e7a4f66c (diff)
fix create filter dialog when called from main UI, fix exception_error() parameter position errors
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 6ed29b5a1..bcb8a99c2 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -785,7 +785,7 @@ function toggle_feedlist() {
// queue: { position: 'end', scope: 'FLFADEQ', limit: 1 }});
}
} catch (e) {
- exception_error(e, "toggle_feedlist");
+ exception_error("toggle_feedlist", e);
}
} */
@@ -848,7 +848,7 @@ function collapse_feedlist() {
setCookie("ttrss_vf_fclps", "1");
}
} catch (e) {
- exception_error(e, "toggle_feedlist");
+ exception_error("toggle_feedlist", e);
}
}
@@ -877,7 +877,7 @@ function adjustArticleScore(id, score) {
}
} catch (e) {
- exception_error(e, "adjustArticleScore");
+ exception_error("adjustArticleScore", e);
}
}