mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-08 08:57:03 +03:00
Resolve #1003
This commit is contained in:
parent
944a2cb8dc
commit
87313d0616
3 changed files with 3 additions and 2 deletions
|
|
@ -90,6 +90,7 @@ export class AppUser extends AbstractApp {
|
||||||
addEventListener('click', dropdownsDetectVisibility);
|
addEventListener('click', dropdownsDetectVisibility);
|
||||||
|
|
||||||
this.folderList = FolderUserStore.folderList;
|
this.folderList = FolderUserStore.folderList;
|
||||||
|
this.messageList = MessagelistUserStore;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -127,7 +127,7 @@ export class MessageModel extends AbstractModel {
|
||||||
addComputablesTo(this, {
|
addComputablesTo(this, {
|
||||||
attachmentIconClass: () =>
|
attachmentIconClass: () =>
|
||||||
this.encrypted() ? 'icon-lock' : FileInfo.getAttachmentsIconClass(this.attachments()),
|
this.encrypted() ? 'icon-lock' : FileInfo.getAttachmentsIconClass(this.attachments()),
|
||||||
threadsLen: () => this.threads().length,
|
threadsLen: () => rl.app.messageList.threadUid() ? 0 : this.threads().length,
|
||||||
|
|
||||||
isUnseen: () => !this.flags().includes('\\seen'),
|
isUnseen: () => !this.flags().includes('\\seen'),
|
||||||
isFlagged: () => this.flags().includes('\\flagged'),
|
isFlagged: () => this.flags().includes('\\flagged'),
|
||||||
|
|
|
||||||
|
|
@ -707,7 +707,7 @@ class MailClient
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$aAllThreads = [];
|
$aAllThreads = [$aUids];
|
||||||
// This only speeds up the search when not cached
|
// This only speeds up the search when not cached
|
||||||
// $oParams->oSequenceSet = new SequenceSet($aUids);
|
// $oParams->oSequenceSet = new SequenceSet($aUids);
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue