1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-10 04:32:35 +01:00

Allow Bearer tokens through, like Bot

This commit is contained in:
Madeline 2022-12-31 14:52:58 +11:00
parent 0a09abbbfa
commit bc086a070c

View File

@ -7,6 +7,7 @@ export const JWTOptions: VerifyOptions = { algorithms: ["HS256"] };
export function checkToken(token: string, jwtSecret: string): Promise<any> { export function checkToken(token: string, jwtSecret: string): Promise<any> {
return new Promise((res, rej) => { return new Promise((res, rej) => {
token = token.replace("Bot ", ""); token = token.replace("Bot ", "");
token = token.replace("Bearer ", "");
/** /**
in fosscord, even with instances that have bot distinction; we won't enforce "Bot" prefix, in fosscord, even with instances that have bot distinction; we won't enforce "Bot" prefix,
as we don't really have separate pathways for bots as we don't really have separate pathways for bots