fix: Fixes crashing while trying to detect old clients (#1459)
This commit is contained in:
parent
1e422db9e8
commit
2eebf4f48d
2 changed files with 9 additions and 11 deletions
|
|
@ -85,7 +85,7 @@ public class ClientVersion : IComparable<ClientVersion>, IComparer<ClientVersion
|
|||
{
|
||||
if (!char.IsWhiteSpace(fmt, br3))
|
||||
{
|
||||
Patch = fmt[br3] - 'a' + 1;
|
||||
Patch = fmt[br3] - 'a';
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue