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.
2 parents f225ccf + ebb220f commit 46c1b10Copy full SHA for 46c1b10
VsCode/Classes/VSCodeWorkspace.cs
@@ -45,7 +45,7 @@ public string GetName()
45
string workspaceName = "";
46
47
// split name by / and get last part
48
- var nameParts = Path.Split('/');
+ var nameParts = Uri.UnescapeDataString(Path).Split('/');
49
if (nameParts.Length == 0)
50
{
51
return workspaceName;
VsCode/Package.appxmanifest
@@ -12,8 +12,7 @@
12
<Identity
13
Name="JonahFintzDEV.602808C55E867"
14
Publisher="CN=240FD63B-E96D-4F79-A6D2-BFC6E6AD6C10"
15
- Version="1.4.1.0" />
16
-
+ Version="1.4.2.0" />
17
18
<Properties>
19
<DisplayName>Command Palette - VS Code</DisplayName>
0 commit comments