deal correctly with escaped strings (#419)

This commit is contained in:
m2049r 2018-09-22 11:20:31 +02:00 committed by GitHub
parent b8fc5f910a
commit 2bbd20855f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ public class BarcodeData {
String noScheme = uri.substring(XMR_SCHEME.length());
Uri monero = Uri.parse(noScheme);
Map<String, String> parms = new HashMap<>();
String query = monero.getQuery();
String query = monero.getEncodedQuery();
if (query != null) {
String[] args = query.split("&");
for (String arg : args) {