I have a running app in a webserver, that redirects to an app installed on a iOS 14 device. the url is in the form of
myapp://?p=someBase64EncodedString
and the application is decoding the string. after upgrading to iOS 14, the url the app gets is
myapp://?p=someBase64EncodedString#
and the pound symbol added to the end of the string fails to decode on my device.
When using ignoreUnknownCharacters
everything works fine, but where did this #
come from?