Skip to content

Commit

Permalink
\t is a ctrl character
Browse files Browse the repository at this point in the history
  • Loading branch information
jstedfast committed Dec 30, 2024
1 parent bf38384 commit f582ba2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MailKit/Net/Imap/ImapCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ void UpdateProgress (int n)

static bool IsAtom (char c)
{
return c < 128 && !char.IsControl (c) && "(){ \t%*\\\"]".IndexOf (c) == -1;
return c < 128 && !char.IsControl (c) && "(){ %*\\\"]".IndexOf (c) == -1;
}

static bool IsQuotedSafe (ImapEngine engine, char c)
Expand Down

0 comments on commit f582ba2

Please sign in to comment.