upd: remove host lookup on file updating

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

View File

@ -261,9 +261,8 @@ export class MastodonApiServerService {
console.error(tokeninfo);
if (tokeninfo && (_request.files as any)['avatar']) {
const file = toSingleLast((_request.files as any)['avatar']);
const user = await this.usersRepository.findOneBy({ id: tokeninfo.userId });
const upload = await this.driveService.addFile({
user: { id: tokeninfo.userId, host: user ? user.host : null },
user: { id: tokeninfo.userId, host: null },
path: file.path,
name: file.originalname !== null && file.originalname !== 'file' ? file.originalname : undefined,
sensitive: false,
@ -274,9 +273,8 @@ export class MastodonApiServerService {
}
if (tokeninfo && (_request.files as any)['header']) {
const file = toSingleLast((_request.files as any)['header']);
const user = await this.usersRepository.findOneBy({ id: tokeninfo.userId });
const upload = await this.driveService.addFile({
user: { id: tokeninfo.userId, host: user ? user.host : null },
user: { id: tokeninfo.userId, host: null },
path: file.path,
name: file.originalname !== null && file.originalname !== 'file' ? file.originalname : undefined,
sensitive: false,