mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed: Show AltTitle or Tag if found by in search
This commit is contained in:
@@ -17,10 +17,10 @@ function MovieSearchResult(props) {
|
|||||||
let alternateTitle = null;
|
let alternateTitle = null;
|
||||||
let tag = null;
|
let tag = null;
|
||||||
|
|
||||||
if (match.key === 'alternateTitles.cleanTitle') {
|
if (match.key === 'alternateTitles.title') {
|
||||||
alternateTitle = alternateTitles[match.arrayIndex];
|
alternateTitle = alternateTitles[match.refIndex];
|
||||||
} else if (match.key === 'tags.label') {
|
} else if (match.key === 'tags.label') {
|
||||||
tag = tags[match.arrayIndex];
|
tag = tags[match.refIndex];
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
Reference in New Issue
Block a user