Skip to content

Commit

Permalink
Reduced bot usernames min length to 2 characters
Browse files Browse the repository at this point in the history
  • Loading branch information
FrayxRulez committed Jun 10, 2017
1 parent a20affd commit cc62a88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Unigram/Unigram/Common/MessageHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1469,7 +1469,7 @@ public static bool IsValidCommand(string command)

public static bool IsValidUsername(string username)
{
if (username.Length <= 3)
if (username.Length <= 2)
{
return false;
}
Expand Down

0 comments on commit cc62a88

Please sign in to comment.