1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-03-05 13:20:20 -05:00

Fixed: Use download client name for history column

This commit is contained in:
Mark McDowall
2024-10-28 16:04:48 -07:00
committed by Mark McDowall
parent 020ed32fcf
commit 1df0ba9e5a
2 changed files with 8 additions and 1 deletions

View File

@@ -195,9 +195,14 @@ function HistoryRow(props: HistoryRowProps) {
}
if (name === 'downloadClient') {
const downloadClientName =
'downloadClientName' in data ? data.downloadClientName : null;
const downloadClient =
'downloadClient' in data ? data.downloadClient : null;
return (
<TableRowCell key={name} className={styles.downloadClient}>
{'downloadClient' in data ? data.downloadClient : ''}
{downloadClientName ?? downloadClient ?? ''}
</TableRowCell>
);
}

View File

@@ -40,6 +40,8 @@ export interface DownloadFailedHistory {
export interface DownloadFolderImportedHistory {
customFormatScore?: string;
downloadClient: string;
downloadClientName: string;
droppedPath: string;
importedPath: string;
}