Improved mobile scene album layout. Removed info channels from network children.

This commit is contained in:
2024-08-27 21:19:20 +02:00
parent ba47d25ab5
commit 5321b08f76
2 changed files with 6 additions and 2 deletions

View File

@@ -98,6 +98,7 @@ export async function fetchEntitiesById(entityIds, options = {}) {
.groupBy('entities.id', 'parents.id', 'affiliates.id'),
options.includeChildren ? knex('entities')
.whereIn('entities.parent_id', entityIds)
.whereNot('type', 'info')
.orderBy('slug') : [],
]);