diff --git a/src/tasks/pull-scheduler-task.ts b/src/tasks/pull-scheduler-task.ts index 44b5e8e..400e5ad 100644 --- a/src/tasks/pull-scheduler-task.ts +++ b/src/tasks/pull-scheduler-task.ts @@ -134,7 +134,7 @@ async function handlePulling( async function isReady(context: AppContext, logger: Logger): Promise { const { config, sworkerApi } = context; - if (!context.groupInfo) { + if (!context.groupInfo || context.groupInfo.totalMembers === 0) { logger.info('group info not loaded, skip this round'); return false; }