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
it caused hexa repr like 2e to be intereperted as our seperator (i.e .) which caused the logic of len parts to fail which is based on out seperator.
The right way would be to encode as hexa string and decode as extra string.
The logic that failed:
if len(pathParts) == 7 { (we got 8 instead)
The text was updated successfully, but these errors were encountered:
it caused hexa repr like
2e
to be intereperted as our seperator (i.e.
) which caused the logic of len parts to fail which is based on out seperator.The right way would be to encode as hexa string and decode as extra string.
The logic that failed:
if len(pathParts) == 7 {
(we got8
instead)The text was updated successfully, but these errors were encountered: