Skip to content

Commit 4f31a00

Browse files
committed
Removed check for ICrawledUrl.DownloadPath not being empty, plugins are supposed to handle that themselves
1 parent 879c5b8 commit 4f31a00

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

UniversalDownloaderPlatform.Engine/DownloadManager.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,6 @@ public async Task Download(List<ICrawledUrl> crawledUrls, CancellationToken canc
7777

7878
if (isDownloadAllowed)
7979
{
80-
if (string.IsNullOrWhiteSpace(entry.DownloadPath))
81-
throw new DownloadException($"Download path is not filled for {entry.Url}");
82-
8380
await _pluginManager.DownloadCrawledUrl(entry);
8481
}
8582
else

0 commit comments

Comments
 (0)