1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 11:58:00 +01:00

[muttator] fixed :moveto/:copyto commands

This commit is contained in:
Martin Stubenschrott
2008-07-09 20:34:43 +00:00
parent bb30dd4378
commit 10132f0c64

View File

@@ -137,12 +137,12 @@ liberator.Mail = function () //{{{
if (copy)
{
MsgCopyMessage(folders[0].URI);
MsgCopyMessage(folders[0]);
setTimeout(function () { liberator.echo(count + " message(s) copied to " + folders[0].prettyName); }, 100);
}
else
{
MsgMoveMessage(folders[0].URI);
MsgMoveMessage(folders[0]);
setTimeout(function () { liberator.echo(count + " message(s) moved to " + folders[0].prettyName); }, 100);
}
return true;