Also use special LIST path in ImapResponseParser for LSUB response
This commit is contained in:
parent
d0f4ab84fc
commit
d9797d02bf
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ class ImapResponseParser {
|
|||
|
||||
if (isStatusResponse(firstToken)) {
|
||||
parseResponseText(response);
|
||||
} else if (equalsIgnoreCase(firstToken, Responses.LIST)) {
|
||||
} else if (equalsIgnoreCase(firstToken, Responses.LIST) || equalsIgnoreCase(firstToken, Responses.LSUB)) {
|
||||
parseListResponse(response);
|
||||
} else {
|
||||
Object token;
|
||||
|
|
Loading…
Reference in a new issue