mirror of https://github.com/Bunsly/JobSpy
fix: #261 job_url is formatted incorrectly for ZipRecruiter jobs
parent
d4d52d05f5
commit
2286cccf24
|
@ -126,7 +126,7 @@ class ZipRecruiter(Scraper):
|
||||||
Processes an individual job dict from the response
|
Processes an individual job dict from the response
|
||||||
"""
|
"""
|
||||||
title = job.get("name")
|
title = job.get("name")
|
||||||
job_url = f"{self.base_url}/jobs//j?lvk={job['listing_key']}"
|
job_url = f"{self.base_url}/jobs/j?lvk={job['listing_key']}"
|
||||||
if job_url in self.seen_urls:
|
if job_url in self.seen_urls:
|
||||||
return
|
return
|
||||||
self.seen_urls.add(job_url)
|
self.seen_urls.add(job_url)
|
||||||
|
|
Loading…
Reference in New Issue