1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-24 10:02:27 +01:00

Fixed muttator for recent TBs, minimum requirements are 3.0b2pre now

This commit is contained in:
Martin Stubenschrott
2009-02-04 14:51:29 +01:00
parent 125f3057e9
commit 5f5c437ddf
3 changed files with 33 additions and 32 deletions

View File

@@ -995,12 +995,13 @@ function Mail() //{{{
// TODO: find out why, and solve the problem
try
{
var msgs = folder.getMessages(msgWindow);
var msgs = folder.messages;
}
catch (e)
{
liberator.dump("ERROR: " + folder.prettyName + " failed to getMessages\n");
continue;
var msgs = folder.getMessages(msgWindow); // for older thunderbirds
liberator.dump("WARNING: " + folder.prettyName + " failed to getMessages, trying old API");
//continue;
}
while (msgs.hasMoreElements())