Skip to content

Commit

Permalink
Fix queue approval Discord hook as well
Browse files Browse the repository at this point in the history
  • Loading branch information
Marlamin committed Dec 1, 2019
1 parent 0570491 commit 4f6cec8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/submitQueue.php
Expand Up @@ -60,7 +60,7 @@
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $json);
curl_setopt($ch, CURLOPT_USERAGENT, "WoW.Tools Discord Integration");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["Length" => strlen($json), "Content-Type" => "application/json"]);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["Length" => strlen($json), "Content-Type: application/json"]);
$response = curl_exec($ch);
curl_close($ch);
flushQueryCache();
Expand Down

0 comments on commit 4f6cec8

Please sign in to comment.