mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-09-09 22:24:27 +08:00
[local-sync] Fix lint error
This commit is contained in:
parent
2f786a8e91
commit
1ba56c5c05
1 changed files with 1 additions and 1 deletions
|
@ -272,7 +272,7 @@ class FetchMessagesInFolder {
|
||||||
imapMessage,
|
imapMessage,
|
||||||
desiredParts,
|
desiredParts,
|
||||||
}, `FetchMessagesInFolder: Could not build message`)
|
}, `FetchMessagesInFolder: Could not build message`)
|
||||||
const outJSON = JSON.stringify({'imapMessage': imapMessage, 'desiredParts': desiredParts, 'result': {}});
|
const outJSON = JSON.stringify({imapMessage, desiredParts, result: {}});
|
||||||
const outDir = path.join(os.tmpdir(), "k2-parse-errors", this._folder.name)
|
const outDir = path.join(os.tmpdir(), "k2-parse-errors", this._folder.name)
|
||||||
const outFile = path.join(outDir, imapMessage.attributes.uid.toString());
|
const outFile = path.join(outDir, imapMessage.attributes.uid.toString());
|
||||||
mkdirp.sync(outDir);
|
mkdirp.sync(outDir);
|
||||||
|
|
Loading…
Add table
Reference in a new issue