mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Add Encoding, Language, Description Indexer props
This commit is contained in:
@@ -5,9 +5,9 @@ function createIndexerSelector() {
|
||||
(state, { indexerId }) => indexerId,
|
||||
(state) => state.indexers.itemMap,
|
||||
(state) => state.indexers.items,
|
||||
(indexerId, itemMap, allMovies) => {
|
||||
if (allMovies && itemMap && indexerId in itemMap) {
|
||||
return allMovies[itemMap[indexerId]];
|
||||
(indexerId, itemMap, allIndexers) => {
|
||||
if (allIndexers && itemMap && indexerId in itemMap) {
|
||||
return allIndexers[itemMap[indexerId]];
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
|
Reference in New Issue
Block a user