aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdelyn Breedlove <[email protected]>2019-02-26 23:59:02 -0700
committerAdelyn Breedlove <[email protected]>2019-02-26 23:59:02 -0700
commitfe666b4c3df893af2b518c0458809bda23bc59e8 (patch)
treef51445ff0be3931d8967ed4ff3896445e5cc4c21
parentAdd permission overwrites (diff)
downloaddisml-fe666b4c3df893af2b518c0458809bda23bc59e8.tar.xz
disml-fe666b4c3df893af2b518c0458809bda23bc59e8.zip
Correct User-Agent
-rw-r--r--lib/http/http.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http/http.ml b/lib/http/http.ml
index ced2810..98abd6c 100644
--- a/lib/http/http.ml
+++ b/lib/http/http.ml
@@ -20,7 +20,7 @@ module Base = struct
let process_request_headers () =
let h = Header.init () in
Header.add_list h [
- "User-Agent", "Dis.ml (https://gitlab.com/Mishio595/disml, v0.2.3)";
+ "User-Agent", "DiscordBot (https://gitlab.com/Mishio595/disml, v0.2.3)";
"Authorization", ("Bot " ^ !Client_options.token);
"Content-Type", "application/json";
"Connection", "keep-alive";