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:
@@ -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())
|
||||
|
||||
Reference in New Issue
Block a user