mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-31 04:00:18 -07:00
Fixed: Removed unused ManualImport Field
This commit is contained in:
parent
1fdfa3fac5
commit
e2e321b9be
5 changed files with 0 additions and 6 deletions
|
@ -152,7 +152,6 @@ class InteractiveImportModalContentConnector extends Component {
|
||||||
|
|
||||||
files.push({
|
files.push({
|
||||||
path: item.path,
|
path: item.path,
|
||||||
folderName: item.folderName,
|
|
||||||
artistId: artist.id,
|
artistId: artist.id,
|
||||||
albumId: album.id,
|
albumId: album.id,
|
||||||
albumReleaseId,
|
albumReleaseId,
|
||||||
|
|
|
@ -71,7 +71,6 @@ namespace Lidarr.Api.V1.ManualImport
|
||||||
Id = resource.Id,
|
Id = resource.Id,
|
||||||
Path = resource.Path,
|
Path = resource.Path,
|
||||||
RelativePath = resource.RelativePath,
|
RelativePath = resource.RelativePath,
|
||||||
FolderName = resource.FolderName,
|
|
||||||
Name = resource.Name,
|
Name = resource.Name,
|
||||||
Size = resource.Size,
|
Size = resource.Size,
|
||||||
Artist = resource.Artist == null ? null : _artistService.GetArtist(resource.Artist.Id),
|
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 Path { get; set; }
|
||||||
public string RelativePath { get; set; }
|
public string RelativePath { get; set; }
|
||||||
public string FolderName { get; set; }
|
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
public long Size { get; set; }
|
public long Size { get; set; }
|
||||||
public ArtistResource Artist { get; set; }
|
public ArtistResource Artist { get; set; }
|
||||||
|
@ -43,7 +42,6 @@ namespace Lidarr.Api.V1.ManualImport
|
||||||
Id = model.Id,
|
Id = model.Id,
|
||||||
Path = model.Path,
|
Path = model.Path,
|
||||||
RelativePath = model.RelativePath,
|
RelativePath = model.RelativePath,
|
||||||
FolderName = model.FolderName,
|
|
||||||
Name = model.Name,
|
Name = model.Name,
|
||||||
Size = model.Size,
|
Size = model.Size,
|
||||||
Artist = model.Artist.ToResource(),
|
Artist = model.Artist.ToResource(),
|
||||||
|
|
|
@ -8,7 +8,6 @@ namespace NzbDrone.Core.MediaFiles.TrackImport.Manual
|
||||||
public class ManualImportFile : IEquatable<ManualImportFile>
|
public class ManualImportFile : IEquatable<ManualImportFile>
|
||||||
{
|
{
|
||||||
public string Path { get; set; }
|
public string Path { get; set; }
|
||||||
public string FolderName { get; set; }
|
|
||||||
public int ArtistId { get; set; }
|
public int ArtistId { get; set; }
|
||||||
public int AlbumId { get; set; }
|
public int AlbumId { get; set; }
|
||||||
public int AlbumReleaseId { get; set; }
|
public int AlbumReleaseId { get; set; }
|
||||||
|
|
|
@ -16,7 +16,6 @@ namespace NzbDrone.Core.MediaFiles.TrackImport.Manual
|
||||||
|
|
||||||
public string Path { get; set; }
|
public string Path { get; set; }
|
||||||
public string RelativePath { get; set; }
|
public string RelativePath { get; set; }
|
||||||
public string FolderName { get; set; }
|
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
public long Size { get; set; }
|
public long Size { get; set; }
|
||||||
public Artist Artist { get; set; }
|
public Artist Artist { get; set; }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue