From d902319da7f2e6406b59c221269e6689fffcdd26 Mon Sep 17 00:00:00 2001 From: Timo Ley Date: Fri, 7 May 2021 22:49:40 +0200 Subject: [PATCH] Allow User Tokens --- nyxx/lib/src/internal/http/_HttpClient.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nyxx/lib/src/internal/http/_HttpClient.dart b/nyxx/lib/src/internal/http/_HttpClient.dart index c6510f23..77db69f0 100644 --- a/nyxx/lib/src/internal/http/_HttpClient.dart +++ b/nyxx/lib/src/internal/http/_HttpClient.dart @@ -8,7 +8,7 @@ class _HttpClient extends http.BaseClient { // ignore: public_member_api_docs _HttpClient(INyxx client) { this._authHeader = { - "Authorization" : "Bot ${client._token}" + "Authorization" : "${client._token}" }; }