From 438f2ce922470a1421362ae2718480713de21011 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sat, 17 May 2008 17:25:41 +0100 Subject: fix create filter dialog when called from main UI, fix exception_error() parameter position errors --- tt-rss.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tt-rss.js') 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); } } -- cgit v1.2.3