Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FL-3801] Mifare Ultralight naming fix #3551

Merged
merged 9 commits into from
Apr 1, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,8 @@ static void nfc_scene_read_success_on_enter_mf_ultralight(NfcApp* instance) {
furi_string_cat_printf(
temp_str, "\e#%s\n", nfc_device_get_name(device, NfcDeviceNameTypeFull));

furi_string_replace(temp_str, "Mifare", "MIFARE");

nfc_render_mf_ultralight_info(data, NfcProtocolFormatTypeShort, temp_str);
}

Expand Down
2 changes: 1 addition & 1 deletion scripts/fbt_tools/pvsstudio.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def atexist_handler():

for bf in GetBuildFailures():
for node in Flatten(bf.node):
if node.exists and "pvs" in node.name and node.name.endswith(".html"):
if node.exists and "pvs" in node.path and node.name.endswith(".html"):
# macOS
if sys.platform == "darwin":
subprocess.run(["open", node.abspath])
Expand Down