mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-06 08:34:28 +01:00
Fixed: Indexer Index custom filters
This commit is contained in:
parent
09c2547c67
commit
56fc455137
1 changed files with 1 additions and 1 deletions
|
|
@ -12,7 +12,7 @@ function getProviderState(payload, getState, section, keyValueOnly=true) {
|
|||
const pendingFields = state.pendingChanges.fields || {};
|
||||
delete pendingChanges.fields;
|
||||
|
||||
const item = id ? _.find(state.items, { id }) : state.selectedSchema || state.schema || state.schema.items || {};
|
||||
const item = id ? _.find(state.items, { id }) : state.selectedSchema || state.schema || state.schema && state.schema.items || {};
|
||||
|
||||
if (item.fields) {
|
||||
pendingChanges.fields = _.reduce(item.fields, (result, field) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue