We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7361015 commit d57b976Copy full SHA for d57b976
src/OpenDirectoryDownloader/OpenDirectoryIndexer.cs
@@ -471,8 +471,7 @@ public async void StartIndexingAsync()
471
Session.TotalFiles = Session.Root.TotalFiles;
472
Session.TotalFileSizeEstimated = Session.Root.TotalFileSize;
473
474
- // Replaced WebUtility.UrlDecode with Uri.UnescapeDataString because of issues with Google Drive alternatives (+ sign)
475
- IEnumerable<string> distinctUrls = Session.Root.AllFileUrls.Distinct().Select(x => Uri.UnescapeDataString(x)).OrderBy(x => x, NaturalSortStringComparer.InvariantCulture);
+ IEnumerable<string> distinctUrls = Session.Root.AllFileUrls.Distinct().OrderBy(x => x, NaturalSortStringComparer.InvariantCulture);
476
477
if (Session.TotalFiles != distinctUrls.Count())
478
{
0 commit comments