upgrade to hummingbird 1.5.4 which handles legacy encoding in uppercase

This commit is contained in:
Craig Raw
2021-03-24 14:37:06 +02:00
parent 6aaf532051
commit f8fa929166
2 changed files with 3 additions and 3 deletions
@@ -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()) {