Skip to content

Commit

Permalink
Fixed bug with UL reading
Browse files Browse the repository at this point in the history
  • Loading branch information
mishamyte committed Oct 16, 2024
1 parent 9c20bdc commit c39edce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/nfc/protocols/mf_ultralight/mf_ultralight_poller.c
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ static NfcCommand mf_ultralight_poller_handler_read_pages(MfUltralightPoller* in
if(instance->error == MfUltralightErrorNone) {
if (start_page < instance->pages_total) {
FURI_LOG_D(TAG, "Read page %d success", start_page);
instance->data->page[start_page] = data.page[start_page];
instance->data->page[start_page] = data.page[0];
instance->pages_read++;
instance->data->pages_read = instance->pages_read;
}
Expand Down

0 comments on commit c39edce

Please sign in to comment.