Fixed: Removed unused ManualImport Field

This commit is contained in:
ta264 2019-08-22 21:14:52 +01:00 committed by Qstick
parent 1fdfa3fac5
commit e2e321b9be
5 changed files with 0 additions and 6 deletions

View File

@ -152,7 +152,6 @@ class InteractiveImportModalContentConnector extends Component {
files.push({
path: item.path,
folderName: item.folderName,
artistId: artist.id,
albumId: album.id,
albumReleaseId,

View File

@ -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),

View File

@ -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(),

View File

@ -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; }

View File

@ -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; }