We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I had something like that:
enum MyEnum { FIRST = 0; SECOND = 1} message Informations { repeated MyEnum i = 1; }
But when decoding such values, it failed in decode_informations, because it reached an
| Some (1, pk) ->
branch. (Expecting Bytes, instead of Varint).
I had to bypass this problem with an indirection:
enum MyEnum { FIRST = 0; SECOND = 1} message Information { MyEnum information = 1} message Informations { repeated Information informations = 1}
Best regards
The text was updated successfully, but these errors were encountered:
Considering this: protocolbuffers/protobuf-javascript#63, it may well be a good solution to do nothing. :-)
Sorry, something went wrong.
No branches or pull requests
I had something like that:
But when decoding such values, it failed in decode_informations, because it reached an
branch. (Expecting Bytes, instead of Varint).
I had to bypass this problem with an indirection:
Best regards
The text was updated successfully, but these errors were encountered: