mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-01-12 01:01:25 +09:00
WIP(ApPersonService.ts
): as any
をなくした
エラーをスローするようにせざるを得なかったのでエラーメッセージを考える必要がある。
This commit is contained in:
parent
44a1b6d5c0
commit
b1ecaecf40
@ -233,7 +233,8 @@ export class ApPersonService implements OnModuleInit {
|
||||
// eslint-disable-next-line no-param-reassign
|
||||
if (resolver == null) resolver = this.apResolverService.createResolver();
|
||||
|
||||
const object = await resolver.resolve(uri) as any;
|
||||
const object = await resolver.resolve(uri);
|
||||
if (object.id == null) throw new Error(''); // TODO
|
||||
|
||||
const person = this.validateActor(object, uri);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user