mirror of
https://github.com/Viren070/AIOStreams.git
synced 2025-12-01 23:14:04 +01:00
fix(frontend): filter out stremio-usenet and archive stream type in type select
This commit is contained in:
@@ -265,7 +265,15 @@ function Content() {
|
||||
};
|
||||
const streamTypeOptions = (constants.STREAM_TYPES || [])
|
||||
.filter(
|
||||
(type) => !['error', 'statistic', 'external', 'youtube'].includes(type)
|
||||
(type) =>
|
||||
![
|
||||
'error',
|
||||
'statistic',
|
||||
'external',
|
||||
'youtube',
|
||||
'stremio-usenet',
|
||||
'archive',
|
||||
].includes(type)
|
||||
)
|
||||
.map((type: string) => ({ label: typeLabelMap[type], value: type }));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user