1
0
forked from mirror/misskey

refactor(ApQuestionService.ts): anyを消す

This commit is contained in:
okayurisotto 2023-07-03 07:17:56 +09:00
parent d0e00c8d17
commit 630078f92e

View File

@ -68,8 +68,9 @@ export class ApQuestionService {
* @returns true if updated * @returns true if updated
*/ */
@bindThis @bindThis
public async updateQuestion(value: any, resolver?: Resolver) { public async updateQuestion(value: string | IObject, resolver?: Resolver) {
const uri = typeof value === 'string' ? value : value.id; const uri = typeof value === 'string' ? value : value.id;
if (uri == null) throw new Error(''); // TODO
// URIがこのサーバーを指しているならスキップ // URIがこのサーバーを指しているならスキップ
if (uri.startsWith(this.config.url + '/')) throw new Error('uri points local'); if (uri.startsWith(this.config.url + '/')) throw new Error('uri points local');