diff --git a/applications/main/nfc/plugins/supported_cards/bip.c b/applications/main/nfc/plugins/supported_cards/bip.c index 08c8254c2..43acd0947 100644 --- a/applications/main/nfc/plugins/supported_cards/bip.c +++ b/applications/main/nfc/plugins/supported_cards/bip.c @@ -151,10 +151,6 @@ static bool bip_read(Nfc* nfc, NfcDevice* device) { MfClassicType type = MfClassicTypeMini; MfClassicError error = mf_classic_poller_sync_detect_type(nfc, &type); if(error != MfClassicErrorNone) break; - if(type != MfClassicType1k) { - FURI_LOG_W(TAG, "Card not MIFARE Classic 1k"); - break; - } data->type = type; if(type != MfClassicType1k) break;