From c838e06d542beec46d3735cf27df36d5c7ba7aa0 Mon Sep 17 00:00:00 2001 From: Konstantin Pastbin Date: Fri, 11 Jul 2025 22:56:18 +0700 Subject: [PATCH] [core] Remove assert for chunkSize which can be 0 now Signed-off-by: Konstantin Pastbin --- platform/chunks_download_strategy.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/platform/chunks_download_strategy.cpp b/platform/chunks_download_strategy.cpp index 87fdc82f3..5f43ad353 100644 --- a/platform/chunks_download_strategy.cpp +++ b/platform/chunks_download_strategy.cpp @@ -114,7 +114,6 @@ int64_t ChunksDownloadStrategy::LoadOrInitChunks(string const & fName, int64_t f int64_t chunkSize) { ASSERT ( fileSize > 0, () ); - ASSERT ( chunkSize > 0, () ); if (Platform::IsFileExistsByFullPath(fName)) {