make deps point to new pimalaya organization path

This commit is contained in:
Clément DOUIN
2024-08-27 06:57:47 +02:00
parent 48382b3e45
commit 3d9c45e374
7 changed files with 129 additions and 32 deletions
+2 -2
View File
@@ -51,10 +51,10 @@ impl Envelope {
let flags = {
let mut flags = String::new();
flags.push(config.unseen_char(unseen));
flags.push(config.replied_char(self.flags.contains(&Flag::Answered)));
flags.push(config.flagged_char(self.flags.contains(&Flag::Flagged)));
flags.push(config.unseen_char(unseen));
flags.push(config.attachment_char(self.has_attachment));
flags.push(config.replied_char(self.flags.contains(&Flag::Answered)));
flags
};