[Pkg-mozext-commits] [nostalgy] 209/235: Fix for TB 5.

David Prévot taffit at alioth.debian.org
Tue Oct 8 20:42:28 UTC 2013


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

taffit pushed a commit to branch master
in repository nostalgy.

commit 61cfac87b9e98297c7390d56632e70d69770c76a
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.
    
    git-svn-id: http://nostalgy.googlecode.com/svn/trunk@209 56b81dcf-5a2f-0410-9db0-014be2e416ff
---
 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