Comparing version 1.0.167 to 1.0.168
# Changelog | ||
## [1.0.168](https://github.com/postalsys/imapflow/compare/v1.0.167...v1.0.168) (2024-11-07) | ||
### Bug Fixes | ||
* **imap:** Fixed issue with a single + response ([51be3a9](https://github.com/postalsys/imapflow/commit/51be3a98205cc900eba6d3cf1962bc42a8de942d)) | ||
## [1.0.167](https://github.com/postalsys/imapflow/compare/v1.0.166...v1.0.167) (2024-11-07) | ||
@@ -4,0 +11,0 @@ |
@@ -31,2 +31,3 @@ 'use strict'; | ||
await parser.getSpace(); | ||
response.command = await parser.getCommand(); | ||
@@ -33,0 +34,0 @@ |
@@ -122,2 +122,7 @@ /* eslint new-cap: 0 */ | ||
if (!this.remainder.length) { | ||
if (this.tag === '+' && this.pos === 1) { | ||
// special case, empty + response | ||
return; | ||
} | ||
let error = new Error(`Unexpected end of input at position ${this.pos} [E4]`); | ||
@@ -124,0 +129,0 @@ error.code = 'ParserError4'; |
{ | ||
"name": "imapflow", | ||
"version": "1.0.167", | ||
"version": "1.0.168", | ||
"description": "IMAP Client for Node", | ||
@@ -5,0 +5,0 @@ "main": "./lib/imap-flow.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
597720
13003