1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-21 22:05:38 -04:00

Fixed: Error rending queue row when quality is missing

Fixes #3614
This commit is contained in:
Mark McDowall
2020-03-18 18:42:10 -07:00
parent 3b6d60e904
commit 8c93d73b42
2 changed files with 8 additions and 7 deletions
+3 -1
View File
@@ -222,9 +222,11 @@ class QueueRow extends Component {
if (name === 'quality') {
return (
<TableRowCell key={name}>
quality ?
<EpisodeQuality
quality={quality}
/>
/> :
null
</TableRowCell>
);
}