mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-30 11:48:26 -07:00
Fixed: Update Indexer Store Select Schema
This commit is contained in:
parent
ef6c93c784
commit
74c2da5088
1 changed files with 2 additions and 1 deletions
|
@ -103,7 +103,8 @@ export default {
|
||||||
[SELECT_INDEXER_SCHEMA]: (state, { payload }) => {
|
[SELECT_INDEXER_SCHEMA]: (state, { payload }) => {
|
||||||
return selectProviderSchema(state, section, payload, (selectedSchema) => {
|
return selectProviderSchema(state, section, payload, (selectedSchema) => {
|
||||||
selectedSchema.enableRss = selectedSchema.supportsRss;
|
selectedSchema.enableRss = selectedSchema.supportsRss;
|
||||||
selectedSchema.enableSearch = selectedSchema.supportsSearch;
|
selectedSchema.enableAutomaticSearch = selectedSchema.supportsSearch;
|
||||||
|
selectedSchema.enableInteractiveSearch = selectedSchema.supportsSearch;
|
||||||
|
|
||||||
return selectedSchema;
|
return selectedSchema;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue