mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
Show separate message for unknown episode/series
This commit is contained in:
parent
9de5181f01
commit
c3e2f22adb
@ -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…
Reference in New Issue
Block a user