Add Encoding, Language, Description Indexer props

This commit is contained in:
Qstick
2021-04-25 23:30:52 -04:00
parent afe1d695d0
commit c6c1644d00
15 changed files with 224 additions and 5 deletions

View File

@@ -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;
}