Skip to content

Commit

Permalink
Updated multiquery parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
enisz committed Nov 9, 2023
1 parent a219f73 commit 14033c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IGDB.php
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ public function multiquery($queries) {
throw new IGDBInvalidParameterException("Invalid type of parameter for multiquery! An array is expected, " . gettype($queries) . " passed!");
}

return $this->_exec_query($this->construct_url("multiquery", false), implode("\n\n", $queries));
return $this->_exec_query($this->construct_url(__FUNCTION__, false), implode("\n\n", $queries));
}

/**
Expand Down

0 comments on commit 14033c0

Please sign in to comment.