diff --git a/frontend/src/InteractiveSearch/InteractiveSearchRow.tsx b/frontend/src/InteractiveSearch/InteractiveSearchRow.tsx index 0977e60b8..a53e10327 100644 --- a/frontend/src/InteractiveSearch/InteractiveSearchRow.tsx +++ b/frontend/src/InteractiveSearch/InteractiveSearchRow.tsx @@ -80,7 +80,6 @@ function InteractiveSearchRow(props: InteractiveSearchRowProps) { history, parsedInfo, release, - publishDate, languages, customFormatScore, customFormats, @@ -90,7 +89,6 @@ function InteractiveSearchRow(props: InteractiveSearchRowProps) { mappedEpisodeNumbers, mappedAbsoluteEpisodeNumbers, mappedEpisodeInfo, - indexerFlags = 0, episodeRequested, downloadAllowed, searchPayload, @@ -112,6 +110,7 @@ function InteractiveSearchRow(props: InteractiveSearchRowProps) { age, ageHours, ageMinutes, + publishDate, title, infoUrl, indexer, @@ -119,6 +118,7 @@ function InteractiveSearchRow(props: InteractiveSearchRowProps) { seeders, leechers, protocol, + indexerFlags = 0, } = release; const { longDateFormat, timeFormat, timeZone } = useUiSettingsValues(); diff --git a/frontend/src/InteractiveSearch/useReleases.ts b/frontend/src/InteractiveSearch/useReleases.ts index 7b10a0399..db8f675b2 100644 --- a/frontend/src/InteractiveSearch/useReleases.ts +++ b/frontend/src/InteractiveSearch/useReleases.ts @@ -49,13 +49,11 @@ export interface Release extends ModelBase { mappedEpisodeNumbers?: number[]; mappedAbsoluteEpisodeNumbers?: number[]; mappedEpisodeInfo: ReleaseEpisode[]; - publishDate: string; episodeRequested: boolean; downloadAllowed: boolean; releaseWeight: number; customFormats: CustomFormat[]; customFormatScore: number; - indexerFlags: number; sceneMapping?: AlternateTitle; } diff --git a/src/Sonarr.Api.V5/Release/ReleaseInfoResource.cs b/src/Sonarr.Api.V5/Release/ReleaseInfoResource.cs index 968417ea4..a038b8e5d 100644 --- a/src/Sonarr.Api.V5/Release/ReleaseInfoResource.cs +++ b/src/Sonarr.Api.V5/Release/ReleaseInfoResource.cs @@ -16,7 +16,6 @@ public class ReleaseInfoResource public int TvdbId { get; set; } public int TvRageId { get; set; } public string? ImdbId { get; set; } - public IEnumerable Rejections { get; set; } = []; public DateTime PublishDate { get; set; } public string? CommentUrl { get; set; } public string? DownloadUrl { get; set; }