diff --git a/job_searcher.mjs b/job_searcher.mjs index 0668055..a35f70f 100644 --- a/job_searcher.mjs +++ b/job_searcher.mjs @@ -204,7 +204,7 @@ async function main() { platformsRun.push('LinkedIn'); // Classify unknown_external jobs using the existing LinkedIn browser session - const unclassified = getJobsByStatus('new').filter(j => j.apply_type === 'unknown_external'); + const unclassified = getJobsByStatus('new').filter(j => j.apply_type === 'unknown_external' && !j.apply_url); if (unclassified.length > 0) { console.log(`\nšŸ” Classifying ${unclassified.length} external jobs...`); const { classified, remaining } = await classifyExternalJobs(liBrowser.page, unclassified, (job, applyType, applyUrl) => {