You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This could be easily resolved by adding these types and then update skip to include them (skipping zero bytes): else if (type === Pbf.StartGroup) this.pos += 0; else if (type === Pbf.EndGroup) this.pos += 0;
The text was updated successfully, but these errors were encountered:
As indicated here https://developers.google.com/protocol-buffers/docs/encoding The wire types of 3 and 4 (start and end groups) are "depreciated" ... but unfortunately they still exist on some protobuf packets floating around.
This could be easily resolved by adding these types and then update skip to include them (skipping zero bytes):
else if (type === Pbf.StartGroup) this.pos += 0;
else if (type === Pbf.EndGroup) this.pos += 0;
The text was updated successfully, but these errors were encountered: