Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/recyclarr/commit/ebf42622b87dc71d698889cf76445c4a31621bdf
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
9 additions and
3 deletions
@ -8,6 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Changed
- Sonarr: Use new URL for release profile guide.
- Sonarr: Use new URL for quality definition guide.
- Radarr: Use new URL for quality definition guide.
## [1.6.0] - 2021-05-31
### Added
@ -17,7 +17,7 @@ namespace Trash.Radarr.QualityDefinition
public async Task < string > GetMarkdownData ( )
{
return await
"https://raw.githubusercontent.com/TRaSH-/Guides/master/docs/Radarr/ V3/ Radarr-Quality-Settings-File-Size.md"
"https://raw.githubusercontent.com/TRaSH-/Guides/master/docs/Radarr/ Radarr-Quality-Settings-File-Size.md"
. GetStringAsync ( ) ;
}
@ -17,7 +17,7 @@ namespace Trash.Sonarr.QualityDefinition
public async Task < string > GetMarkdownData ( )
{
return await
"https://raw.githubusercontent.com/TRaSH-/Guides/master/docs/Sonarr/ V3/ Sonarr-Quality-Settings-File-Size.md"
"https://raw.githubusercontent.com/TRaSH-/Guides/master/docs/Sonarr/ Sonarr-Quality-Settings-File-Size.md"
. GetStringAsync ( ) ;
}
@ -117,7 +117,7 @@ namespace Trash.Sonarr.ReleaseProfile
private Url BuildUrl ( ReleaseProfileType profileName )
{
return "https://raw.githubusercontent.com/TRaSH-/Guides/master/docs/Sonarr /V3 ". AppendPathSegment (
return "https://raw.githubusercontent.com/TRaSH-/Guides/master/docs/Sonarr ". AppendPathSegment (
$"{_markdownDocNames[profileName]}.md" ) ;
}