Skip to content

Commit

Permalink
fix(bulk): Bulk req fix (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeevan-Kishore authored Jun 13, 2024
1 parent 2211b7e commit e04d776
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1042,7 +1042,8 @@ class Client {
}

async getInBulk(requests) {
const requestHash = hash(requests);
const config = await this.getConfig();
const requestHash = hash({ ...requests, ...{ publisherId: config["publisher-id"] } });

async function getBulkLocation() {
const response = await this.request("/api/v1/bulk-request", {
Expand Down

0 comments on commit e04d776

Please sign in to comment.