fix(zr): date posted (#98)

This commit is contained in:
Cullen Watson
2024-02-03 07:20:53 -06:00
committed by GitHub
parent 8e2ab277da
commit 02caf1b38d
3 changed files with 5 additions and 14 deletions

View File

@@ -246,6 +246,8 @@ class GlassdoorScraper(Scraper):
location_type = "CITY"
elif location_type == "S":
location_type = "STATE"
elif location_type == 'N':
location_type = "COUNTRY"
return int(items[0]["locationId"]), location_type
@staticmethod