Fixed missing space in command.
This commit is contained in:
parent
759a89fcfd
commit
2f513ff532
@ -924,9 +924,9 @@ void IMAPFolder::deleteMessages(const messageSet& msgs)
|
|||||||
command.imbue(std::locale::classic());
|
command.imbue(std::locale::classic());
|
||||||
|
|
||||||
if (msgs.isUIDSet())
|
if (msgs.isUIDSet())
|
||||||
command << "UID STORE" << IMAPUtils::messageSetToSequenceSet(msgs);
|
command << "UID STORE " << IMAPUtils::messageSetToSequenceSet(msgs);
|
||||||
else
|
else
|
||||||
command << "STORE" << IMAPUtils::messageSetToSequenceSet(msgs);
|
command << "STORE " << IMAPUtils::messageSetToSequenceSet(msgs);
|
||||||
|
|
||||||
command << " +FLAGS (\\Deleted)";
|
command << " +FLAGS (\\Deleted)";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user