Skip to content

Commit

Permalink
fix regkey name for startup
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosbozzani committed Feb 2, 2019
1 parent 036d05e commit b3a334a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SilentStreamBugFix/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ private void UpdateRegistry()
{
if (Enabled)
{
key.SetValue(Application.ProductName, Application.ExecutablePath);
key.SetValue(ProductInfo.Name, Application.ExecutablePath);
}
else
{
key.DeleteValue(Application.ProductName, false);
key.DeleteValue(ProductInfo.Name, false);
}
}
}
Expand Down

0 comments on commit b3a334a

Please sign in to comment.