fixed local sources not showing in the extensions screen

This commit is contained in:
Schnitzel5 2025-08-28 20:19:27 +02:00
parent 68e900d9b5
commit 78f8dd372f

View file

@ -13,7 +13,11 @@ Stream<List<Source>> getExtensionsStream(Ref ref, ItemType itemType) async* {
.filter()
.idIsNotNull()
.and()
.repo((q) => q.hiddenIsNull().or().hiddenEqualTo(false))
.group(
(q) => q.repoIsNull().or().repo(
(q) => q.hiddenIsNull().or().hiddenEqualTo(false),
),
)
.isActiveEqualTo(true)
.itemTypeEqualTo(itemType)
.watch(fireImmediately: true);