forked from FoundKeyGang/FoundKey
Fix bug
This commit is contained in:
parent
12f932d48a
commit
359470a263
1 changed files with 9 additions and 9 deletions
|
@ -62,15 +62,6 @@ export default async (job: bq.Job, done: any): Promise<void> => {
|
|||
}) as IRemoteUser;
|
||||
}
|
||||
|
||||
//#region Log
|
||||
publishApLogStream({
|
||||
direction: 'in',
|
||||
activity: activity.type,
|
||||
host: user.host,
|
||||
actor: user.username
|
||||
});
|
||||
//#endregion
|
||||
|
||||
// Update activityの場合は、ここで署名検証/更新処理まで実施して終了
|
||||
if (activity.type === 'Update') {
|
||||
if (activity.object && activity.object.type === 'Person') {
|
||||
|
@ -101,6 +92,15 @@ export default async (job: bq.Job, done: any): Promise<void> => {
|
|||
done();
|
||||
return;
|
||||
}
|
||||
|
||||
//#region Log
|
||||
publishApLogStream({
|
||||
direction: 'in',
|
||||
activity: activity.type,
|
||||
host: user.host,
|
||||
actor: user.username
|
||||
});
|
||||
//#endregion
|
||||
|
||||
// アクティビティを処理
|
||||
try {
|
||||
|
|
Loading…
Reference in a new issue