Fixed bug with UL reading

This commit is contained in:
Mykhailo Shevchuk 2024-10-17 01:41:27 +03:00
parent 9c20bdc287
commit c39edce7c6

View File

@ -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;
}