1
0
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:
Mark McDowall 2020-03-22 22:50:18 -07:00
parent 00821b7ad6
commit 618c611a59

View File

@ -298,12 +298,16 @@ export const defaultState = {
label: 'Network',
type: filterBuilderTypes.STRING,
optionsSelector: function(items) {
const tagList = items.map((series) => {
return {
const tagList = items.reduce((acc, series) => {
if (series.network) {
acc.push({
id: series.network,
name: series.network
};
});
}
return acc;
}, []);
return tagList.sort(sortByName);
}