From bf2a588a25937b39d1170a689760ce17fa311d18 Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Mon, 5 May 2025 14:57:12 +0300 Subject: [PATCH] fix(core): handle empty 'info_items' in Caesar 'confirm_value' [no changelog] --- core/src/trezor/ui/layouts/caesar/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/trezor/ui/layouts/caesar/__init__.py b/core/src/trezor/ui/layouts/caesar/__init__.py index 1a8d7c3d77..a0ef604ad1 100644 --- a/core/src/trezor/ui/layouts/caesar/__init__.py +++ b/core/src/trezor/ui/layouts/caesar/__init__.py @@ -770,7 +770,7 @@ async def confirm_value( if description and value: description += ":" - if info_items is None: + if not info_items: return await raise_if_not_confirmed( trezorui_api.confirm_value( title=title,