1
0

qml wizard: fix creating imported wallet from camera: concat with space

The parser expects the list of keys/addrs to be whitespace-separated (no commas).
Same as line 61.
This commit is contained in:
SomberNight
2023-11-24 20:48:04 +00:00
parent affe3630b0
commit b18f9570fc

View File

@@ -79,7 +79,7 @@ WizardComponent {
dialog.onFound.connect(function() {
if (verify(dialog.scanData)) {
if (import_ta.text != '')
import_ta.text = import_ta.text + ',\n'
import_ta.text = import_ta.text + '\n'
import_ta.text = import_ta.text + dialog.scanData
}
dialog.close()