1
mirror of https://github.com/m2049r/xmrwallet synced 2025-03-29 19:19:12 +01:00

deal correctly with escaped strings ()

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

@ -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) {