From 374b2e6640dadc6a213b730baac77d5a1f5c9c26 Mon Sep 17 00:00:00 2001 From: Matthew Jackson Date: Fri, 6 Mar 2026 17:55:02 -0800 Subject: [PATCH] Rate limit only stops LinkedIn, continues other platforms MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Don't break the entire run when LinkedIn rate limits — skip LinkedIn jobs and continue to Wellfound and other platforms. Co-Authored-By: Claude Opus 4.6 --- job_applier.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/job_applier.mjs b/job_applier.mjs index ef34745..437627c 100644 --- a/job_applier.mjs +++ b/job_applier.mjs @@ -243,8 +243,8 @@ async function main() { await browser?.browser?.close().catch(() => {}); } if (results.rate_limited) { - await sendTelegram(settings, `⚠️ *LinkedIn Easy Apply daily limit reached* — stopping all applications until tomorrow.`).catch(() => {}); - break; + await sendTelegram(settings, `⚠️ *LinkedIn Easy Apply daily limit reached* — skipping LinkedIn, continuing other platforms.`).catch(() => {}); + results.rate_limited = false; // Reset so other platforms can proceed } }