Skip to content

Commit

Permalink
Merge pull request #9 from jjw24/unescape_registry_key
Browse files Browse the repository at this point in the history
Unescape subkey string
  • Loading branch information
jjw24 committed Feb 28, 2021
2 parents c8b9cc8 + 5717fed commit d8e2c43
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Flow.Launcher.Plugin.Putty/PuttySessionService.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Flow.Launcher.Plugin.Putty
namespace Flow.Launcher.Plugin.Putty
{
using Microsoft.Win32;
using System;
Expand Down Expand Up @@ -33,7 +33,7 @@ public IEnumerable<PuttySession> GetAll()
{
results.Add(new PuttySession
{
Identifier = subKey,
Identifier = Uri.UnescapeDataString(subKey),
Protocol = puttySessionSubKey.GetValue("Protocol").ToString(),
Username = puttySessionSubKey.GetValue("UserName").ToString(),
Hostname = puttySessionSubKey.GetValue("HostName").ToString(),
Expand Down
2 changes: 1 addition & 1 deletion Flow.Launcher.Plugin.Putty/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"Name": "Putty",
"Description": "Launch Putty Sessions",
"Author":"Konstantin Zaitcev, Kai Eichinger (@cH40zLord)",
"Version":"2.1.1",
"Version":"2.1.2",
"Language": "csharp",
"Website": "https://github.com/jjw24/Flow.Launcher.Plugin.Putty",
"ExecuteFileName": "Flow.Launcher.Plugin.Putty.dll",
Expand Down

0 comments on commit d8e2c43

Please sign in to comment.