From 0b425b8609c4c42f6986f4d209b6068136bb7cd4 Mon Sep 17 00:00:00 2001 From: scgbckbone Date: Thu, 5 Mar 2026 03:58:15 +0100 Subject: [PATCH] fix: file picker in import BIP-322 msg needs vdisk and slot_b args --- shared/auth.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shared/auth.py b/shared/auth.py index 7f998d38..378f9d81 100644 --- a/shared/auth.py +++ b/shared/auth.py @@ -315,7 +315,7 @@ class ApproveTransaction(UserAuthorizedAction): from ux_q1 import QRScannerInteraction msg = await QRScannerInteraction().scan_text('Scan message from a QR code') else: - choices = await file_picker(suffix='.txt', ux=False) + choices = await file_picker(suffix='.txt', ux=False, **ch) target = "%s.txt" % b2a_hex(self.psbt.por322_msg_hash).decode() for fname, dir, _ in choices: @@ -323,7 +323,7 @@ class ApproveTransaction(UserAuthorizedAction): fn = dir + "/" + fname break else: - fn = await file_picker(choices=choices) + fn = await file_picker(choices=choices, **ch) if not fn: return