From cfcb337c1dc0f4595c31964e1fa35f66f23be827 Mon Sep 17 00:00:00 2001 From: Jeffrey Ye Date: Tue, 26 Nov 2019 00:38:53 -0800 Subject: [PATCH] revert space fix (Avalonia fixed this bug) --- ILSpy.Core/MainWindow.xaml.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ILSpy.Core/MainWindow.xaml.cs b/ILSpy.Core/MainWindow.xaml.cs index 321cf8b..a062e9c 100644 --- a/ILSpy.Core/MainWindow.xaml.cs +++ b/ILSpy.Core/MainWindow.xaml.cs @@ -1123,8 +1123,7 @@ namespace ICSharpCode.ILSpy async void LoadAssemblies(IEnumerable fileNames, List loadedAssemblies = null, bool focusNode = true) { SharpTreeNode lastNode = null; - foreach (string name in fileNames) { - string file = Uri.UnescapeDataString(name); + foreach (string file in fileNames) { switch (Path.GetExtension(file)) { case ".nupkg": this.handlingNugetPackageSelection = true;