mirror of
https://github.com/misskey-dev/misskey.git
synced 2024-12-29 05:38:30 +01:00
fix lint (possibly 'null
This commit is contained in:
parent
2d173156fb
commit
bf8073e45e
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ export class Resolver {
|
|||
const server = await this.federatedInstanceService.fetch(host);
|
||||
|
||||
const object = (this.user
|
||||
? await this.apRequestService.signedGet(value, this.user, server.httpMessageSignaturesImplementationLevel) as IObject
|
||||
? await this.apRequestService.signedGet(value, this.user, server?.httpMessageSignaturesImplementationLevel ?? '00') as IObject
|
||||
: await this.httpRequestService.getActivityJson(value)) as IObject;
|
||||
|
||||
if (
|
||||
|
|
Loading…
Reference in a new issue