mirror of
https://github.com/fergalmoran/Readarr.git
synced 2025-12-22 09:29:59 +00:00
Fixed: Removed unused ManualImport Field
This commit is contained in:
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user