upd: remove Bearer from auth when looking up token

This commit is contained in:
Mar0xy 2023-10-30 00:29:58 +01:00
parent b57ec5e2eb
commit 2aa7c1ae34
No known key found for this signature in database
GPG Key ID: 56569BBE47D2C828
1 changed files with 2 additions and 2 deletions

View File

@ -256,8 +256,8 @@ export class MastodonApiServerService {
const client = getClient(BASE_URL, accessTokens); // we are using this here, because in private mode some info isnt
// displayed without being logged in
try {
if (_request.files.length > 0) {
const tokeninfo = await this.accessTokensRepository.findOneBy({ token: accessTokens });
if (_request.files.length > 0 && accessTokens) {
const tokeninfo = await this.accessTokensRepository.findOneBy({ token: accessTokens.replace('Bearer ', '') });
console.error(tokeninfo);
if (tokeninfo && (_request.files as any)['avatar']) {
const file = toSingleLast((_request.files as any)['avatar']);