minor fix

This commit is contained in:
Vishwa Gaurav
2022-06-29 15:53:07 +05:30
parent 3cc6d63dec
commit d4c790f274

View File

@@ -114,7 +114,7 @@ Query.prototype.url = function (start) {
if (this.getRemoteFilter() !== "") query += `&f_WT=${this.getRemoteFilter()}`;
if (this.getJobType() !== "") query += `&f_JT=${this.getJobType()}`;
query += `&start=${start}`;
query += `&sortBy=${this.getSortBy}`;
if (this.sortBy !== "") query += `&sortBy=${this.getSortBy}`;
return encodeURI(query);
};