fix(server): assets not shown if partner timeline disabled

This commit is contained in:
Yaros
2026-04-12 13:57:35 +02:00
parent ac3eea80d2
commit 6cd33de1bb
+1 -1
View File
@@ -35,7 +35,7 @@ export class TimelineService extends BaseService {
const partnerIds = await getMyPartnerIds({
userId: auth.user.id,
repository: this.partnerRepository,
timelineEnabled: true,
timelineEnabled: dto.bbox === undefined, // ignore this option in map view
});
userIds.push(...partnerIds);
}