修复订阅任务创建逻辑

This commit is contained in:
whyour
2022-05-29 22:51:20 +08:00
parent 4f925b92d0
commit 026fc43695
2 changed files with 7 additions and 3 deletions
+6 -1
View File
@@ -26,6 +26,11 @@ export default async () => {
// 运行所有订阅
const subs = await subscriptionService.list();
for (const sub of subs) {
await subscriptionService.handleTask(sub, true, true, true);
await subscriptionService.handleTask(
sub,
!sub.is_disabled,
true,
!sub.is_disabled,
);
}
};