This commit is contained in:
r3df0xx
2022-04-26 21:35:02 +03:00
parent b87a0f87fa
commit 9e0499c461
2 changed files with 3 additions and 3 deletions

View File

@@ -443,8 +443,8 @@ bool subghz_protocol_decoder_faac_slh_serialize(
&instance->generic, instance->keystore, &instance->manufacture_name);
bool res = subghz_block_generic_serialize(&instance->generic, flipper_format, frequency, preset);
if(res && !flipper_format_write_string_cstr(flipper_format, "Manufacture", instance->manufacture_name)) {
FURI_LOG_E(TAG, "Unable to add manufacture name");
if(res && !flipper_format_write_uint32(flipper_format, "Seed", &instance->generic.seed, 1)) {
FURI_LOG_E(TAG, "Unable to add Seed");
res = false;
}
return res;