修复系统启动执行订阅任务

This commit is contained in:
whyour
2022-05-28 19:56:12 +08:00
parent 8d2c62d6d1
commit f338537ea0
3 changed files with 33 additions and 14 deletions
+1 -1
View File
@@ -26,6 +26,6 @@ export default async () => {
// 运行所有订阅
const subs = await subscriptionService.list();
for (const sub of subs) {
await subscriptionService.handleTask(sub);
await subscriptionService.handleTask(sub, true, true, true);
}
};