Skip to content

Commit 9f54191

Browse files
authoredJun 13, 2017
Merge pull request #523 from CloudTrade/master
fixes #552 at #522
2 parents 82c7c92 + b20b866 commit 9f54191

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎MailKit/Net/Imap/ImapEngine.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1674,7 +1674,7 @@ internal ImapUntaggedResult ProcessUntaggedResponse (CancellationToken cancellat
16741674
if (current != null)
16751675
current.RespCodes.Add (code);
16761676
} else if (token.Type != ImapTokenType.Eoln) {
1677-
var text = ((string) token.Value) + ReadLine (cancellationToken);
1677+
var text = (token.Value.ToString()) + ReadLine (cancellationToken);
16781678

16791679
if (current != null)
16801680
current.ResponseText = text.TrimEnd ();

0 commit comments

Comments
 (0)
Please sign in to comment.