mirror of
https://github.com/nodemailer/wildduck.git
synced 2025-01-08 17:07:44 +08:00
fix mailbox flags in LIST
This commit is contained in:
parent
52cb6568fc
commit
fe5d3f123c
1 changed files with 4 additions and 1 deletions
|
@ -256,7 +256,10 @@ module.exports.generateFolderListing = function (folders, skipHierarchy) {
|
||||||
}
|
}
|
||||||
|
|
||||||
item = {
|
item = {
|
||||||
flags: [].concat(folder.flags || []),
|
// flags array is used to store permanentflags
|
||||||
|
//flags: [].concat(folder.flags || []),
|
||||||
|
|
||||||
|
flags: [],
|
||||||
path
|
path
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue