mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2026-08-10 08:37:05 +00:00
upgrade to hummingbird 1.5.4 which handles legacy encoding in uppercase
This commit is contained in:
@@ -147,8 +147,8 @@ public class QRScanDialog extends Dialog<QRScanDialog.Result> {
|
||||
Matcher partMatcher = PART_PATTERN.matcher(qrtext);
|
||||
|
||||
if(qrtext.toLowerCase().startsWith(UR.UR_PREFIX)) {
|
||||
if(LegacyURDecoder.isLegacyURFragment(qrtext.toLowerCase())) {
|
||||
legacyDecoder.receivePart(qrtext.toLowerCase());
|
||||
if(LegacyURDecoder.isLegacyURFragment(qrtext)) {
|
||||
legacyDecoder.receivePart(qrtext);
|
||||
Platform.runLater(() -> percentComplete.setValue(legacyDecoder.getPercentComplete()));
|
||||
|
||||
if(legacyDecoder.isComplete()) {
|
||||
|
||||
Reference in New Issue
Block a user