Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/recyclarr/commit/7733b5e569ece1de720aadf947c3ae29c361daca
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
8 additions and
2 deletions
@ -12,6 +12,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Migration step added to delete old `repo` directory. Run `recyclarr migrate` to use.
### Fixed
- Update default clone URL for trash guides repo to new URL:
`https://github.com/TRaSH-Guides/Guides.git` .
## [5.0.3] - 2023-06-25
### Fixed
@ -29,8 +29,9 @@ public class GitRepositoryFactory : IGitRepositoryFactory
await repo . Status ( ) ;
}
_log . Debug ( "Remote 'origin' set to {Url}" , repoUrl ) ;
await repo . SetRemote ( "origin" , repoUrl ) ;
_log . Debug ( "Remote 'origin' set to {Url}" , repoUrl ) ;
return repo ;
}
}
@ -4,7 +4,7 @@ namespace Recyclarr.TrashLib.Settings;
public record TrashRepository : IRepositorySettings
{
public Uri CloneUrl { get ; [ UsedImplicitly ] init ; } = new ( "https://github.com/TRaSH- /Guides.git") ;
public Uri CloneUrl { get ; [ UsedImplicitly ] init ; } = new ( "https://github.com/TRaSH- Guides /Guides.git") ;
public string Branch { get ; [ UsedImplicitly ] init ; } = "master" ;
public string? Sha1 { get ; [ UsedImplicitly ] init ; }
}