Skip to content

Commit

Permalink
Fix issue 546/564 App not starting on fresh installations
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas694 committed Sep 7, 2024
1 parent d5d57ac commit 1134f2e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/TumblThree/SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@

[assembly: ComVisible(false)]
[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.MainAssembly)]
[assembly: AssemblyVersion("2.15.0.0")]
[assembly: AssemblyFileVersion("2.15.0.0")]
[assembly: AssemblyVersion("2.15.1.0")]
[assembly: AssemblyFileVersion("2.15.1.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,10 @@ private bool IsInstanceAlreadyRunning(AppSettings settings)
_messageService.Value.ShowError(Resources.InstanceAlreadyRunning);
return true;
}
catch (DirectoryNotFoundException ex)
{
Logger.Error("ModuleController.IsInstanceAlreadyRunning: {0}", ex);
}
return false;
}

Expand Down

0 comments on commit 1134f2e

Please sign in to comment.