diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-03-01 16:44:11 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-03-01 16:44:11 +0100 |
| commit | 377b4c8a2baf7a8c85b8846bb967347e9b566a70 (patch) | |
| tree | fca020098bffc6b1fddc25a8199138928711348d /scripts | |
| parent | a5ac31a4d41e9d4596222d143c813a7edd31668d (diff) | |
| download | isda-377b4c8a2baf7a8c85b8846bb967347e9b566a70.tar isda-377b4c8a2baf7a8c85b8846bb967347e9b566a70.tar.bz2 isda-377b4c8a2baf7a8c85b8846bb967347e9b566a70.tar.zst | |
fix not ignoring complete tasks
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/youtube_atom_compare.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/youtube_atom_compare.ts b/scripts/youtube_atom_compare.ts index f56f9af..6897e56 100644 --- a/scripts/youtube_atom_compare.ts +++ b/scripts/youtube_atom_compare.ts @@ -33,7 +33,7 @@ async function flat_feed(cid: string, data: { [key: string]: unknown }) { key: `youtube-channel:${cid}`, data: { ...data, last_seen_ids: undefined } })) - ws.send(JSON.stringify({ t: "enqueue", key: `youtube-channel:${cid}` })) + ws.send(JSON.stringify({ t: "enqueue", key: `youtube-channel:${cid}`, ignore_complete: true })) } console.log("done"); } |