Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/4ca828db810e70fa493bb52a2e23ed6784f0de46
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
1 deletions
@ -319,6 +319,7 @@ namespace NzbDrone.Core
case ".flv" :
case ".dvr-ms" :
case ".ogm" :
case ".strm" :
{
result . QualityType = QualityTypes . SDTV ;
break ;
@ -14,7 +14,7 @@ namespace NzbDrone.Core.Providers
public class DiskScanProvider
{
private static readonly Logger Logger = LogManager . GetCurrentClassLogger ( ) ;
private static readonly string [ ] mediaExtentions = new [ ] { ".mkv" , ".avi" , ".wmv" , ".mp4" , ".mpg" , ".mpeg" , ".xvid" , ".flv" , ".mov" , ".rm" , ".rmvb" , ".divx" , ".dvr-ms" , ".ts" , ".ogm" , ".m4v" } ;
private static readonly string [ ] mediaExtentions = new [ ] { ".mkv" , ".avi" , ".wmv" , ".mp4" , ".mpg" , ".mpeg" , ".xvid" , ".flv" , ".mov" , ".rm" , ".rmvb" , ".divx" , ".dvr-ms" , ".ts" , ".ogm" , ".m4v" , ".strm" } ;
private readonly DiskProvider _diskProvider ;
private readonly EpisodeProvider _episodeProvider ;
private readonly MediaFileProvider _mediaFileProvider ;