forked from FoundKeyGang/FoundKey
Remove silent flag
This commit is contained in:
parent
eb0809ebb4
commit
9c15c94f80
2 changed files with 8 additions and 5 deletions
|
@ -58,7 +58,7 @@ async function createImage(resolver: Resolver, actor: IRemoteUser, image) {
|
|||
return await uploadFromUrl(image.url, actor);
|
||||
}
|
||||
|
||||
async function createNote(resolver: Resolver, actor: IRemoteUser, note, silent = false) {
|
||||
async function createNote(resolver: Resolver, actor: IRemoteUser, note) {
|
||||
if (
|
||||
('attributedTo' in note && actor.account.uri !== note.attributedTo) ||
|
||||
typeof note.id !== 'string'
|
||||
|
@ -86,7 +86,7 @@ async function createNote(resolver: Resolver, actor: IRemoteUser, note, silent =
|
|||
const inReplyTo = await resolver.resolve(note.inReplyTo) as any;
|
||||
const actor = await resolvePerson(inReplyTo.attributedTo);
|
||||
if (isRemoteUser(actor)) {
|
||||
reply = await createNote(resolver, actor, inReplyTo, true);
|
||||
reply = await createNote(resolver, actor, inReplyTo);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -102,5 +102,5 @@ async function createNote(resolver: Resolver, actor: IRemoteUser, note, silent =
|
|||
viaMobile: false,
|
||||
geo: undefined,
|
||||
uri: note.id
|
||||
}, silent);
|
||||
});
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@ export default async (user: IUser, data: {
|
|||
visibility?: string;
|
||||
uri?: string;
|
||||
app?: IApp;
|
||||
}, silent = false) => new Promise<IPost>(async (res, rej) => {
|
||||
}) => new Promise<IPost>(async (res, rej) => {
|
||||
if (data.createdAt == null) data.createdAt = new Date();
|
||||
if (data.visibility == null) data.visibility = 'public';
|
||||
|
||||
|
@ -127,7 +127,10 @@ export default async (user: IUser, data: {
|
|||
_id: false
|
||||
});
|
||||
|
||||
if (!silent) {
|
||||
// この投稿が3分以内に作成されたものであるならストリームに配信
|
||||
const shouldDistribute = new Date().getTime() - post.createdAt.getTime() < 1000 * 60 * 3;
|
||||
|
||||
if (shouldDistribute) {
|
||||
const note = await renderNote(user, post);
|
||||
const content = renderCreate(note);
|
||||
content['@context'] = context;
|
||||
|
|
Loading…
Reference in a new issue