mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 12:09:20 +03:00
No need to call folderInformationMultiply at boot when LIST-STATUS is supported
This commit is contained in:
parent
8d07ab87fa
commit
d0210bd09a
10 changed files with 97 additions and 83 deletions
|
|
@ -40,6 +40,7 @@ export class FolderCollectionModel extends AbstractCollectionModel
|
|||
this.IsMetadataSupported
|
||||
this.IsThreadsSupported
|
||||
this.IsSortSupported
|
||||
this.IsExtendedSupported
|
||||
this.Namespace;
|
||||
this.Optimized
|
||||
this.SystemFolders
|
||||
|
|
@ -147,6 +148,7 @@ export class FolderCollectionModel extends AbstractCollectionModel
|
|||
FolderUserStore.folderListOptimized(!!this.Optimized);
|
||||
FolderUserStore.sortSupported(!!this.IsSortSupported);
|
||||
FolderUserStore.metadataSupported(!!this.IsMetadataSupported);
|
||||
FolderUserStore.listStatusSupported(!!this.IsListStatusSupported);
|
||||
|
||||
FolderUserStore.sentFolder(normalizeFolder(SettingsGet('SentFolder')));
|
||||
FolderUserStore.draftFolder(normalizeFolder(SettingsGet('DraftFolder')));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue