mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-04-23 13:57:06 -04:00
Show separate message for unknown episode/series
This commit is contained in:
parent
9de5181f01
commit
c3e2f22adb
1 changed files with 5 additions and 1 deletions
|
@ -97,7 +97,11 @@ function ReleaseSceneIndicator(props) {
|
|||
if (!isMixed && !isUnknown) {
|
||||
level = styles.levelNotRequested;
|
||||
}
|
||||
messages.push(<div>Mapped episode wasn't requested in this search.</div>);
|
||||
if (mappedNumber) {
|
||||
messages.push(<div>Mapped episode wasn't requested in this search.</div>);
|
||||
} else {
|
||||
messages.push(<div>Unknown episode or series.</div>);
|
||||
}
|
||||
}
|
||||
|
||||
const table = (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue