Cleanup messages cache handling

This commit is contained in:
the-djmaze 2023-01-18 08:38:26 +01:00
parent 745a3603fe
commit 7f8707c4c0
3 changed files with 4 additions and 27 deletions

View file

@ -270,9 +270,7 @@ export class FolderCollectionModel extends AbstractCollectionModel
FolderUserStore.namespace = this.namespace;
// 'THREAD=REFS', 'THREAD=REFERENCES', 'THREAD=ORDEREDSUBJECT'
AppUserStore.threadsAllowed(!!(
Settings.app('useImapThread') && this.capabilities.some(capa => capa.startsWith('THREAD='))
));
AppUserStore.threadsAllowed(!!this.capabilities.some(capa => capa.startsWith('THREAD=')));
// FolderUserStore.folderListOptimized(!!this.optimized);
FolderUserStore.quotaUsage(this.quotaUsage);