From 02fd46f64f6fb18e812acda523224011b405d546 Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 19 Apr 2018 09:17:42 +0900 Subject: Fix bug --- src/remote/activitypub/models/note.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/remote') diff --git a/src/remote/activitypub/models/note.ts b/src/remote/activitypub/models/note.ts index c947243664..94d723e239 100644 --- a/src/remote/activitypub/models/note.ts +++ b/src/remote/activitypub/models/note.ts @@ -47,7 +47,8 @@ export async function createNote(value: any, resolver?: Resolver, silent = false const object = await resolver.resolve(value) as any; if (object == null || object.type !== 'Note') { - throw new Error('invalid note'); + log(`invalid note: ${object}`); + return null; } const note: INoteActivityStreamsObject = object; @@ -62,7 +63,7 @@ export async function createNote(value: any, resolver?: Resolver, silent = false if (!note.to.includes('https://www.w3.org/ns/activitystreams#Public')) visibility = 'unlisted'; if (note.cc.length == 0) visibility = 'private'; // TODO - if (visibility != 'public') throw new Error('unspported visibility'); + if (visibility != 'public') return null; //#endergion // 添付メディア -- cgit v1.2.3-freya