diff --git a/src/FilterLists.Agent/Features/Lists/DownloadLists.cs b/src/FilterLists.Agent/Features/Lists/DownloadLists.cs index 57d6a8aa2..5ce094ac2 100644 --- a/src/FilterLists.Agent/Features/Lists/DownloadLists.cs +++ b/src/FilterLists.Agent/Features/Lists/DownloadLists.cs @@ -90,6 +90,10 @@ private ActionBlock BuildDownloader(CancellationToken cancellationToke var command = CommandsByExtension[extension].Invoke(l); await _mediator.Send(command, cancellationToken); } + else + { + _logger.LogError($"The file extension of list {l.Id} from {l.ViewUrl} is not supported."); + } } catch (HttpRequestException ex) {