Skip to content

Commit

Permalink
Merge pull request #826 from mishamyte/bug/incorrect-ul-read
Browse files Browse the repository at this point in the history
Fixed bug with UL reading
  • Loading branch information
xMasterX authored Oct 17, 2024
2 parents 9c20bdc + c39edce commit c4d9970
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 c4d9970

Please sign in to comment.