[Pkg-mozext-commits] [nostalgy] 208/252: Fix for TB 5.

David Prévot taffit at moszumanska.debian.org
Tue Jun 14 15:24:59 UTC 2016


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository nostalgy.

commit a98dc529fd33c5adab2f9c88f207f53fc500df5d
Author: alain.frisch at gmail.com <alain.frisch at gmail.com@56b81dcf-5a2f-0410-9db0-014be2e416ff>
Date:   Thu Jul 21 13:55:26 2011 +0000

    Fix for TB 5.
---
 content/nostalgy.js | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/content/nostalgy.js b/content/nostalgy.js
index 483e3fa..423bbf5 100644
--- a/content/nostalgy.js
+++ b/content/nostalgy.js
@@ -755,7 +755,10 @@ function NostalgySearchSenderQuickFilter() {
     if (found < fields.length) new_state = make_state(fields[found]);
     else new_state = make_state(null);
     QuickFilterBarMuxer.activeFilterer.filterValues.text = new_state;
-    QuickFilterBarMuxer.onActiveAllMessagesLoaded(gFolderDisplay);
+    if (QuickFilterBarMuxer.onActiveAllMessagesLoaded)
+        QuickFilterBarMuxer.onActiveAllMessagesLoaded(gFolderDisplay); // TB 3
+    if (QuickFilterBarMuxer.onActiveMessagesLoaded)
+        QuickFilterBarMuxer.onActiveMessagesLoaded(gFolderDisplay); // TB 5
     QuickFilterBarMuxer._showFilterBar(new_state.text != null);
     QuickFilterBarMuxer.updateSearch();
     return true;

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/nostalgy.git



More information about the Pkg-mozext-commits mailing list