diff options
| -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";
|