From 0d97d23dde799b493f89c36afb9e99592610e4de Mon Sep 17 00:00:00 2001 From: tidusjar Date: Mon, 1 Mar 2021 12:17:14 +0000 Subject: [PATCH] Don't kill the process when we cannot find the baseurl --- src/Ombi/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ombi/Program.cs b/src/Ombi/Program.cs index 9caa657b5..6ccfc811a 100644 --- a/src/Ombi/Program.cs +++ b/src/Ombi/Program.cs @@ -258,7 +258,7 @@ namespace Ombi { var error = $"Can't set the base URL because we cannot find the file at '{indexPath}', if you are trying to set a base url please report this on Github!"; Console.WriteLine(error); - throw new Exception(error); + return; } var indexHtml = await File.ReadAllTextAsync(indexPath); var sb = new StringBuilder(indexHtml);