Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/d9b7dd257e3b641677daf263c15473aa727d39ee?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
8 additions and
3 deletions
@ -105,7 +105,7 @@ namespace NzbDrone.Core.Organizer
}
}
}
}
var episodeFormat = Get SeasonEpisodePattern ( pattern ) ;
var episodeFormat = Get EpisodeFormat ( pattern ) ;
if ( episodeFormat ! = null )
if ( episodeFormat ! = null )
{
{
@ -246,7 +246,7 @@ namespace NzbDrone.Core.Organizer
return value . ToString ( split [ 1 ] ) ;
return value . ToString ( split [ 1 ] ) ;
}
}
private EpisodeFormat Get SeasonEpisodePattern ( string pattern )
private EpisodeFormat Get EpisodeFormat ( string pattern )
{
{
return _patternCache . Get ( pattern , ( ) = >
return _patternCache . Get ( pattern , ( ) = >
{
{
@ -18,9 +18,14 @@
}
}
.btn {
.btn {
.buttonBackground(@btnDangerBackground, @btnDangerBackgroundHighlight);
.buttonBackground(@btnBackground, @btnBackgroundHighlight);
color: #333333;
}
}
.btn:hover {
color: #333333;
}
input:first-of-type:checked ~ .btn {
input:first-of-type:checked ~ .btn {
.buttonBackground(@btnPrimaryBackground, @btnPrimaryBackgroundHighlight);
.buttonBackground(@btnPrimaryBackground, @btnPrimaryBackgroundHighlight);
}
}