Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/recyclarr/commit/f1f9887042333d924066de8a73403d12991905d0
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
9 additions and
2 deletions
@ -26,7 +26,7 @@ public class ConfigTemplateLister : IConfigLister
public async Task List ( )
{
await _repoUpdater . UpdateRepo ( _settings . Settings . Repositories . TrashGuide ) ;
await _repoUpdater . UpdateRepo ( _settings . Settings . Repositories . ConfigTemplates ) ;
var data = _guideService . TemplateData ;
@ -7,7 +7,13 @@ public record TrashRepository : IRepositorySettings
public Uri CloneUrl { get ; [ UsedImplicitly ] init ; } = new ( "https://github.com/TRaSH-/Guides.git" ) ;
public string Branch { get ; [ UsedImplicitly ] init ; } = "master" ;
public string? Sha1 { get ; [ UsedImplicitly ] init ; }
public string? GitPath { get ; [ UsedImplicitly ] init ; }
}
public record ConfigTemplateRepository : IRepositorySettings
{
public Uri CloneUrl { get ; [ UsedImplicitly ] init ; } = new ( "https://github.com/recyclarr/config-templates.git" ) ;
public string Branch { get ; [ UsedImplicitly ] init ; } = "master" ;
public string? Sha1 { get ; [ UsedImplicitly ] init ; }
}
public record LogJanitorSettings
@ -18,6 +24,7 @@ public record LogJanitorSettings
public record Repositories
{
public TrashRepository TrashGuide { get ; [ UsedImplicitly ] init ; } = new ( ) ;
public ConfigTemplateRepository ConfigTemplates { get ; [ UsedImplicitly ] init ; } = new ( ) ;
}
public record SettingsValues