Patch messaging import crons not running (#6688)
In 0.23.1, we have introduced a regression by migrating to TwentyORM ; messageChannels were not considered as syncable anymore
This commit is contained in:
@ -46,9 +46,7 @@ export class MessagingMessageListFetchCronJob {
|
||||
'messageChannel',
|
||||
);
|
||||
|
||||
const messageChannels = await messageChannelRepository.find({
|
||||
select: ['id'],
|
||||
});
|
||||
const messageChannels = await messageChannelRepository.find();
|
||||
|
||||
for (const messageChannel of messageChannels) {
|
||||
if (
|
||||
|
||||
Reference in New Issue
Block a user