This commit is contained in:
2023-08-09 20:16:05 +02:00
parent f546906bd8
commit 3d53c93706

View File

@@ -198,11 +198,9 @@ pub async fn start_update_cache(
} }
}; };
if cached_file.is_some() { if cached_file.is_none() {
continue; cache_file(book.id, available_type, db.clone()).await;
} }
cache_file(book.id, available_type, db.clone()).await;
} }
} }
} }