Skip to content

Commit 1134f2e

Browse files
committed
Fix issue 546/564 App not starting on fresh installations
1 parent d5d57ac commit 1134f2e

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/TumblThree/SharedAssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212

1313
[assembly: ComVisible(false)]
1414
[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.MainAssembly)]
15-
[assembly: AssemblyVersion("2.15.0.0")]
16-
[assembly: AssemblyFileVersion("2.15.0.0")]
15+
[assembly: AssemblyVersion("2.15.1.0")]
16+
[assembly: AssemblyFileVersion("2.15.1.0")]

src/TumblThree/TumblThree.Applications/Controllers/ModuleController.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,10 @@ private bool IsInstanceAlreadyRunning(AppSettings settings)
237237
_messageService.Value.ShowError(Resources.InstanceAlreadyRunning);
238238
return true;
239239
}
240+
catch (DirectoryNotFoundException ex)
241+
{
242+
Logger.Error("ModuleController.IsInstanceAlreadyRunning: {0}", ex);
243+
}
240244
return false;
241245
}
242246

0 commit comments

Comments
 (0)