From 32a182c4395da30e4d17ca28e1bc848b990ef8dd Mon Sep 17 00:00:00 2001 From: MX <10697207+xMasterX@users.noreply.github.com> Date: Wed, 10 Dec 2025 01:09:34 +0300 Subject: [PATCH] fix some oops thx WillyJL --- .../protocol_support/mf_ultralight/mf_ultralight_render.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/applications/main/nfc/helpers/protocol_support/mf_ultralight/mf_ultralight_render.c b/applications/main/nfc/helpers/protocol_support/mf_ultralight/mf_ultralight_render.c index 8d20109f8..d125d5fa0 100644 --- a/applications/main/nfc/helpers/protocol_support/mf_ultralight/mf_ultralight_render.c +++ b/applications/main/nfc/helpers/protocol_support/mf_ultralight/mf_ultralight_render.c @@ -40,8 +40,6 @@ void nfc_render_mf_ultralight_pwd_pack(const MfUltralightData* data, FuriString* } nfc_render_mf_ultralight_pages_count(data, str); - - nfc_render_mf_ultralight_counters(data, str); } void nfc_render_mf_ultralight_info( @@ -51,6 +49,8 @@ void nfc_render_mf_ultralight_info( nfc_render_iso14443_3a_info(data->iso14443_3a_data, format_type, str); nfc_render_mf_ultralight_pages_count(data, str); + + nfc_render_mf_ultralight_counters(data, str); } void nfc_render_mf_ultralight_dump(const MfUltralightData* data, FuriString* str) {