From e96badf1de5f809cc8248f5a5632caffca1b3adf Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Fri, 28 Jun 2019 16:16:55 -0500 Subject: [PATCH] rm unlikely exception catch --- src/FilterLists.Agent/ListArchiver/DownloadList.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/FilterLists.Agent/ListArchiver/DownloadList.cs b/src/FilterLists.Agent/ListArchiver/DownloadList.cs index cb3a65047..ad17312c5 100644 --- a/src/FilterLists.Agent/ListArchiver/DownloadList.cs +++ b/src/FilterLists.Agent/ListArchiver/DownloadList.cs @@ -76,11 +76,6 @@ protected override async Task Handle(Command request, CancellationToken cancella _logger.LogWarning( $"File extension not supported for list {request.ListInfo.Id} from {request.ListInfo.ViewUrl}."); } - catch (ArgumentException ex) - { - _logger.LogError(ex, - $"Could not determine the file extension for list {request.ListInfo.Id} from {request.ListInfo.ViewUrl}."); - } } private async Task DownloadByFileExtension(Command request, CancellationToken cancellationToken)