We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fa26df commit 0106df0Copy full SHA for 0106df0
src/controllers/channel.ts
@@ -171,7 +171,7 @@ export class ChannelController {
171
order: { [order]: 'DESC' },
172
skip: offset,
173
take: limit,
174
- relations: ['channel']
+ relations: subChannelGetManyRelations
175
};
176
const statsResults = await ChannelController.statsAggregatedChannelService.getMany(channel_ids, config);
177
return statsResults.map((stat: { channel: Channel }) => stat.channel).filter(Boolean);
0 commit comments