Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/e2e321b9bed9f56726b737f2994718eb9950583d
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
0 additions and
6 deletions
@ -152,7 +152,6 @@ class InteractiveImportModalContentConnector extends Component {
files . push ( {
path : item . path ,
folderName : item . folderName ,
artistId : artist . id ,
albumId : album . id ,
albumReleaseId ,
@ -71,7 +71,6 @@ namespace Lidarr.Api.V1.ManualImport
Id = resource . Id ,
Path = resource . Path ,
RelativePath = resource . RelativePath ,
FolderName = resource . FolderName ,
Name = resource . Name ,
Size = resource . Size ,
Artist = resource . Artist = = null ? null : _artistService . GetArtist ( resource . Artist . Id ) ,
@ -15,7 +15,6 @@ namespace Lidarr.Api.V1.ManualImport
{
public string Path { get ; set ; }
public string RelativePath { get ; set ; }
public string FolderName { get ; set ; }
public string Name { get ; set ; }
public long Size { get ; set ; }
public ArtistResource Artist { get ; set ; }
@ -43,7 +42,6 @@ namespace Lidarr.Api.V1.ManualImport
Id = model . Id ,
Path = model . Path ,
RelativePath = model . RelativePath ,
FolderName = model . FolderName ,
Name = model . Name ,
Size = model . Size ,
Artist = model . Artist . ToResource ( ) ,
@ -8,7 +8,6 @@ namespace NzbDrone.Core.MediaFiles.TrackImport.Manual
public class ManualImportFile : IEquatable < ManualImportFile >
{
public string Path { get ; set ; }
public string FolderName { get ; set ; }
public int ArtistId { get ; set ; }
public int AlbumId { get ; set ; }
public int AlbumReleaseId { get ; set ; }
@ -16,7 +16,6 @@ namespace NzbDrone.Core.MediaFiles.TrackImport.Manual
public string Path { get ; set ; }
public string RelativePath { get ; set ; }
public string FolderName { get ; set ; }
public string Name { get ; set ; }
public long Size { get ; set ; }
public Artist Artist { get ; set ; }