From 9c367dbfc635523b60fac106ec0038388936d917 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Thu, 17 Sep 2020 17:30:08 -0500 Subject: [PATCH] =?UTF-8?q?docs(archival):=20=F0=9F=93=9D=20fix=20todo=20t?= =?UTF-8?q?ypo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../FilterLists.Archival.Application/Commands/ArchiveList.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/Archival/FilterLists.Archival.Application/Commands/ArchiveList.cs b/services/Archival/FilterLists.Archival.Application/Commands/ArchiveList.cs index 1a1b2b744..06b68b114 100644 --- a/services/Archival/FilterLists.Archival.Application/Commands/ArchiveList.cs +++ b/services/Archival/FilterLists.Archival.Application/Commands/ArchiveList.cs @@ -102,7 +102,7 @@ private async Task DownloadSegments( var streams = await Task.WhenAll(readTasks); // TODO: prefix fileName with listId - // TODO: add ".txt" sources with no extension + // TODO: add ".txt" for sources with no extension var fileName = Uri.UnescapeDataString(segments.First().Url.Segments.Last()); var target = new FileInfo(fileName); await _archiver.ArchiveFileAsync(new FileToArchive(target, streams), cancellationToken);