remove febbox HLS, it doesnt work

This commit is contained in:
mrjvs
2024-01-02 20:12:28 +01:00
parent 34a2dd2ec5
commit 98230470f1
2 changed files with 3 additions and 2 deletions

View File

@@ -2,9 +2,9 @@ import { gatherAllEmbeds, gatherAllSources } from '@/providers/all';
import { Embed, Sourcerer } from '@/providers/base';
export function getBuiltinSources(): Sourcerer[] {
return gatherAllSources();
return gatherAllSources().filter((v) => !v.disabled);
}
export function getBuiltinEmbeds(): Embed[] {
return gatherAllEmbeds();
return gatherAllEmbeds().filter((v) => !v.disabled);
}