From 5e8e1b0507077178df46201b4f420bf24ade9c09 Mon Sep 17 00:00:00 2001 From: Martin Stubenschrott Date: Mon, 5 Jan 2009 05:04:33 +0100 Subject: [PATCH] fixed markFolderRead for newer thunderbirds --- muttator/content/mail.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/muttator/content/mail.js b/muttator/content/mail.js index c8513d7c..60df88ab 100644 --- a/muttator/content/mail.js +++ b/muttator/content/mail.js @@ -588,14 +588,14 @@ function Mail() //{{{ if (mail.currentFolder.isServer) return liberator.beep(); - mail.currentFolder.markAllMessagesRead(); + mail.currentFolder.markAllMessagesRead(msgWindow); }); mappings.add(myModes, [""], "Mark all messages as read", function () { - mail.getFolders("", false).forEach(function (folder) { folder.markAllMessagesRead(); }); + mail.getFolders("", false).forEach(function (folder) { folder.markAllMessagesRead(msgWindow); }); }); // DISPLAY OPTIONS