Skip to content

Commit

Permalink
Merge branch 'master' of github.com:postalsys/imapflow
Browse files Browse the repository at this point in the history
  • Loading branch information
andris9 committed May 7, 2024
2 parents 6a2eb14 + a344826 commit 0654ed3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/tools.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@ module.exports = {
existing.path = folder.path;
existing.subscribed = !!folder.subscribed;
existing.listed = !!folder.listed;
existing.status = !!folder.status;

if (folder.specialUse) {
existing.specialUse = folder.specialUse;
}
Expand All @@ -164,7 +166,8 @@ module.exports = {
flags: folder.flags,
path: folder.path,
subscribed: !!folder.subscribed,
listed: !!folder.listed
listed: !!folder.listed,
status: !!folder.status
};

if (folder.delimiter) {
Expand Down

0 comments on commit 0654ed3

Please sign in to comment.