Skip to content

Commit

Permalink
Bugfix when using GV CLI -version
Browse files Browse the repository at this point in the history
  • Loading branch information
Yelo420 committed Nov 21, 2024
1 parent b0889a2 commit 629f6de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gamevault/PipeServiceHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ private static void SafeDispose(IDisposable? disposable)
if (options == null)
return null;

if (options.Action != CommandOptions.ActionEnum.Show && options.Action != CommandOptions.ActionEnum.Start && !SettingsViewModel.Instance.License.IsActive())
if ((options.Action == CommandOptions.ActionEnum.Install || options.Action == CommandOptions.ActionEnum.Uninstall) && !SettingsViewModel.Instance.License.IsActive())
{
try
{
Expand Down

0 comments on commit 629f6de

Please sign in to comment.