-
-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
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
Shared bean cant be read in anymore #876
Comments
The (in my opinion) "proper" fix would be to use URL-safe Base64, where |
Thanks for the support. The strange thing is: The url is read correctly, but the URL-Params search is then destroying the "+" into a space, which wasn't before. |
I'm not talking about the protobuf serialization step, but about the base64 encoding afterwards. I'm talking about line 123 in this example: Beanconqueror/src/services/shareService/share-service.service.ts Lines 121 to 123 in 77c0f1e
Beanconqueror/src/services/uiHelper.ts Lines 162 to 164 in 77c0f1e
Normal Base64 contains I would propose to use the URL-safe Base64 alphabet instead to prevent other possible breakages in the future (which could be done using two simple |
Fixed with 8.0.3 in the first place. |
Thats due to somehow changes that "+" is replaced with " " (space)
The text was updated successfully, but these errors were encountered: