We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d98d387 commit 5485a2fCopy full SHA for 5485a2f
VsCode/Classes/VSCodeWorkspace.cs
@@ -2,6 +2,7 @@
2
using Microsoft.CommandPalette.Extensions.Toolkit;
3
using System;
4
using System.Collections.Generic;
5
+using Windows.Web.AtomPub;
6
7
namespace CmdPalVsCode;
8
@@ -45,7 +46,7 @@ public string GetName()
45
46
string workspaceName = "";
47
48
// split name by / and get last part
- var nameParts = Path.Split('/');
49
+ var nameParts = Uri.UnescapeDataString(Path).Split('/');
50
if (nameParts.Length == 0)
51
{
52
return workspaceName;
0 commit comments