Skip to content

Commit c39edce

Browse files
committed
Fixed bug with UL reading
1 parent 9c20bdc commit c39edce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/nfc/protocols/mf_ultralight/mf_ultralight_poller.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ static NfcCommand mf_ultralight_poller_handler_read_pages(MfUltralightPoller* in
508508
if(instance->error == MfUltralightErrorNone) {
509509
if (start_page < instance->pages_total) {
510510
FURI_LOG_D(TAG, "Read page %d success", start_page);
511-
instance->data->page[start_page] = data.page[start_page];
511+
instance->data->page[start_page] = data.page[0];
512512
instance->pages_read++;
513513
instance->data->pages_read = instance->pages_read;
514514
}

0 commit comments

Comments
 (0)