diff options
| author | Adelyn Breedlove <[email protected]> | 2019-02-26 23:59:02 -0700 |
|---|---|---|
| committer | Adelyn Breedlove <[email protected]> | 2019-02-26 23:59:02 -0700 |
| commit | fe666b4c3df893af2b518c0458809bda23bc59e8 (patch) | |
| tree | f51445ff0be3931d8967ed4ff3896445e5cc4c21 | |
| parent | Add permission overwrites (diff) | |
| download | disml-fe666b4c3df893af2b518c0458809bda23bc59e8.tar.xz disml-fe666b4c3df893af2b518c0458809bda23bc59e8.zip | |
Correct User-Agent
| -rw-r--r-- | lib/http/http.ml | 2 |
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";
|