1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-29 08:42:27 +01:00

Fixed muttator folder completions

This commit is contained in:
Martin Stubenschrott
2009-05-05 23:45:05 +02:00
parent 43537025c6
commit acd7d654ad
2 changed files with 5 additions and 0 deletions

View File

@@ -92,6 +92,8 @@ function Mail() //{{{
function getFolderCompletions(context)
{
let folders = mail.getFolders(context.filter);
context.anchored = false;
context.quote = false;
context.completions = folders.map(function (folder)
[folder.server.prettyName + ": " + folder.name,
"Unread: " + folder.getNumUnread(false)]);