mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
Fixed: Series Network filter breaking if network was not available
This commit is contained in:
parent
00821b7ad6
commit
618c611a59
@ -298,12 +298,16 @@ export const defaultState = {
|
|||||||
label: 'Network',
|
label: 'Network',
|
||||||
type: filterBuilderTypes.STRING,
|
type: filterBuilderTypes.STRING,
|
||||||
optionsSelector: function(items) {
|
optionsSelector: function(items) {
|
||||||
const tagList = items.map((series) => {
|
const tagList = items.reduce((acc, series) => {
|
||||||
return {
|
if (series.network) {
|
||||||
id: series.network,
|
acc.push({
|
||||||
name: series.network
|
id: series.network,
|
||||||
};
|
name: series.network
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return acc;
|
||||||
|
}, []);
|
||||||
|
|
||||||
return tagList.sort(sortByName);
|
return tagList.sort(sortByName);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user