use all filters to dbFallback for channel timeline

This commit is contained in:
dakkar 2024-03-04 20:48:27 +00:00
parent 3bb8a91124
commit 2071e72b2b

View file

@ -109,7 +109,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
excludePureRenotes: !ps.withRenotes, excludePureRenotes: !ps.withRenotes,
excludeNoFiles: ps.withFiles, excludeNoFiles: ps.withFiles,
dbFallback: async (untilId, sinceId, limit) => { dbFallback: async (untilId, sinceId, limit) => {
return await this.getFromDb({ untilId, sinceId, limit, channelId: channel.id }, me); return await this.getFromDb({ untilId, sinceId, limit, channelId: channel.id, withFiles: ps.withFiles, withRenotes: ps.withRenotes }, me);
}, },
}); });
}); });