This commit is contained in:
Vishwa Gaurav
2023-11-23 05:13:18 +05:30
2 changed files with 8 additions and 8 deletions

View File

@@ -13,8 +13,8 @@ function Query(queryObj) {
this.host = queryObj.host || "www.linkedin.com";
//api handles strings with spaces by replacing the values with %20
this.keyword = queryObj.keyword.replace(" ", "+") || "";
this.location = queryObj.location.replace(" ", "+") || "";
this.keyword = queryObj.keyword?.replace(" ", "+") || "";
this.location = queryObj.location?.replace(" ", "+") || "";
this.dateSincePosted = queryObj.dateSincePosted || "";
this.jobType = queryObj.jobType || "";
this.remoteFilter = queryObj.remoteFilter || "";