1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/checkToken.ts b/src/util/checkToken.ts
index 4a60195b..d890e0e1 100644
--- a/src/util/checkToken.ts
+++ b/src/util/checkToken.ts
@@ -4,6 +4,7 @@ import { UserModel } from "../models";
export function checkToken(token: string, jwtSecret: string): Promise<any> {
return new Promise((res, rej) => {
+ token = token.replace("Bot ", ""); // TODO: proper bot support
jwt.verify(token, jwtSecret, JWTOptions, async (err, decoded: any) => {
if (err || !decoded) return rej("Invalid Token");
|