mirror of
https://github.com/Sonarr/Sonarr
synced 2026-05-08 04:50:56 +02:00
Merge 55993e3aa0 into bf5d48c76a
This commit is contained in:
commit
b62f201ce5
3 changed files with 2 additions and 5 deletions
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -16,7 +16,6 @@ public class ReleaseInfoResource
|
|||
public int TvdbId { get; set; }
|
||||
public int TvRageId { get; set; }
|
||||
public string? ImdbId { get; set; }
|
||||
public IEnumerable<string> Rejections { get; set; } = [];
|
||||
public DateTime PublishDate { get; set; }
|
||||
public string? CommentUrl { get; set; }
|
||||
public string? DownloadUrl { get; set; }
|
||||
|
|
|
|||
Loading…
Reference in a new issue