Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/recyclarr/commit/b3666ec3cb937da46c15b0dc4f551584eba3c8f8?style=unified&whitespace=ignore-eol You should set ROOT_URL correctly, otherwise the web may not work correctly.

refactor: Less verbose error messages

pull/153/head
Robert Dailey 2 years ago
parent eb9898fdd7
commit b3666ec3cb

@ -75,10 +75,11 @@ public abstract class BaseCommand : ICommand
break;
default:
Logger.Error(e, "Non-recoverable exception");
Logger.Error("{Message}", e.Message);
break;
}
Logger.Debug(e, "Exception");
throw new CommandException("Exiting due to exception");
}
finally

@ -34,8 +34,9 @@ public class CreateConfigCommand : BaseCommand
if (configFile.Exists)
{
throw new CommandException($"The file {configFile} already exists. Please choose another path or " +
"delete/move the existing file and run this command again.");
throw new CommandException(
$"The file {configFile} already exists. Please choose another path or delete/move the existing " +
"file and run this command again.");
}
configFile.CreateParentDirectory();

Loading…
Cancel
Save