From c96566fb41764ce0c4db52bf3f3c0661f63ee81d Mon Sep 17 00:00:00 2001 From: Matt Gleason Date: Mon, 16 Sep 2024 10:34:29 -0400 Subject: [PATCH] SFT-4203: fixed decoding of single-frame UR2s --- extmod/foundation/modfoundation-ur.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extmod/foundation/modfoundation-ur.h b/extmod/foundation/modfoundation-ur.h index 0f9ccf013..f17e2c32f 100644 --- a/extmod/foundation/modfoundation-ur.h +++ b/extmod/foundation/modfoundation-ur.h @@ -52,7 +52,7 @@ STATIC NORETURN void mod_foundation_ur_raise(UR_Error *error) { type = &mp_type_UnsupportedError; break; case UR_ERROR_KIND_NOT_MULTI_PART: - type = &mp_type_UnsupportedError; + type = &mp_type_NotMultiPartError; break; default: type = &mp_type_RuntimeError;