[share_plus] Linux and Web share URL is constructed incorrectly #235
Labels
bug
Something isn't working
linux
share_plus
Feature, Enhancement, Bug Fixes for Share Plus Plugin
web
windows
This line:
plus_plugins/packages/share_plus_linux/lib/share_plus_linux.dart
Line 18 in 1dc73a1
is constructing the URL incorrectly; you cannot concatenated unencoded elements together in a query string and then
encodeFull
it and get the right result, because some characters that are valid in a URL in general—notably&
—are not valid in a query argument. If you want to construct a URL with query parameters manually, you need to encode the components explicitly.Compare:
The first will result in an email whose subject is "That " and whose body is "More ".
The text was updated successfully, but these errors were encountered: