mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-04-21 03:32:06 +00:00
fixed local sources not showing in the extensions screen
This commit is contained in:
parent
68e900d9b5
commit
78f8dd372f
1 changed files with 5 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue