~ruther/NosSmooth

414a994473a554cbcba23f0a4b1cc9c370c6bf81 — Rutherther 3 years ago 2ed1006
fix(packets): syntax error in generator
M Packets/NosSmooth.PacketSerializersGenerator/InlineConverterGenerators/StringInlineConverterGenerator.cs => Packets/NosSmooth.PacketSerializersGenerator/InlineConverterGenerators/StringInlineConverterGenerator.cs +1 -1
@@ 48,7 48,7 @@ public static Result<string?> ParseString(ref PacketStringEnumerator stringEnume
        return Result<string?>.FromError(tokenResult);
    }}

    if (packetToken.Length == 1 && packetToken.Token[0] == '-')
    if (packetToken.Token.Length == 1 && packetToken.Token[0] == '-')
    {{
        return Result<string?>.FromSuccess(null);
    }}

Do not follow this link