Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/recyclarr/commit/6811c2c816ed9a8ee258e63c73389b55cc3a80db You should set ROOT_URL correctly, otherwise the web may not work correctly.

refactor: Do not create the RepoDirectory on start up

Let the GitRepositoryFactory do it.
pull/151/head
Robert Dailey 2 years ago
parent 794c8733ef
commit 6811c2c816

@ -19,7 +19,7 @@ public class AppPathSetupTask : IBaseCommandSetupTask
_log.Debug("App Data Dir: {AppData}", _paths.AppDataDirectory);
// Initialize other directories used throughout the application
_paths.RepoDirectory.Create();
// Do not initialize the repo directory here; the GitRepositoryFactory handles that later.
_paths.CacheDirectory.Create();
_paths.LogDirectory.Create();
_paths.ConfigsDirectory.Create();

Loading…
Cancel
Save