diff --git a/applications/services/desktop/animations/animation_manager.c b/applications/services/desktop/animations/animation_manager.c index 0c6522c07..2dbac5b34 100644 --- a/applications/services/desktop/animations/animation_manager.c +++ b/applications/services/desktop/animations/animation_manager.c @@ -363,14 +363,14 @@ static bool animation_manager_is_valid_idle_animation( bool result = true; - /*if(!strcmp(info->name, BAD_BATTERY_ANIMATION_NAME)) { + if(!strcmp(info->name, BAD_BATTERY_ANIMATION_NAME)) { Power* power = furi_record_open(RECORD_POWER); bool battery_is_well = power_is_battery_healthy(power); furi_record_close(RECORD_POWER); result = !battery_is_well; - }*/ - + } + if(!strcmp(info->name, NO_SD_ANIMATION_NAME)) { Storage* storage = furi_record_open(RECORD_STORAGE); FS_Error sd_status = storage_sd_status(storage);