Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/0e85e3981560a255dddbbe1fee46593f4481d6e2
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
3 additions and
2 deletions
@ -133,6 +133,7 @@ namespace NzbDrone.Core.Test.DiskSpace
[TestCase("/boot")]
[TestCase("/var/lib/rancher")]
[TestCase("/var/lib/rancher/volumes")]
[TestCase("/var/lib/kubelet")]
[TestCase("/var/lib/docker")]
[TestCase("/some/place/docker/aufs")]
@ -23,7 +23,7 @@ namespace NzbDrone.Core.DiskSpace
private readonly IDiskProvider _diskProvider ;
private readonly Logger _logger ;
private static readonly Regex _regexSpecialDrive = new Regex ( "^/var/lib/(docker|rancher|kubelet) $|^/boot$|docker(/var)?/aufs", RegexOptions . Compiled ) ;
private static readonly Regex _regexSpecialDrive = new Regex ( "^/var/lib/(docker|rancher|kubelet) (/| $) |^/boot(/| $) |/ docker(/var)?/aufs(/|$) ", RegexOptions . Compiled ) ;
public DiskSpaceService ( ISeriesService seriesService , IConfigService configService , IDiskProvider diskProvider , Logger logger )
{
@ -11,7 +11,7 @@ module.exports = Backgrid.Cell.extend({
var contents = path ;
if ( label ) {
if ( label && label !== path && ! label . startsWith ( "UUID=" ) ) {
contents += ' ({0})' . format ( label ) ;
}