SubGHz: Fix wrong error message in history

This commit is contained in:
MX 2022-11-12 16:58:35 +03:00
parent a821b80ffc
commit 02fe403b2b
No known key found for this signature in database
GPG key ID: 6C4C311DFD4B4AB5

View file

@ -123,7 +123,7 @@ void subghz_history_clear_tmp_dir(SubGhzHistory* instance) {
}
// Stage 2 - create dir if necessary
res = !storage_simply_mkdir(instance->storage, SUBGHZ_HISTORY_TMP_DIR);
res = storage_simply_mkdir(instance->storage, SUBGHZ_HISTORY_TMP_DIR);
if(!res) {
FURI_LOG_E(TAG, "Cannot process temp dir!");
}