fix(backend): localOnlyなノートの時は配送処理そのものを起動しない

This commit is contained in:
おさむのひと 2024-11-21 20:44:46 +09:00
parent 3a6c2aa835
commit 62104def2c
1 changed files with 1 additions and 1 deletions

View File

@ -677,7 +677,7 @@ export class NoteCreateService implements OnApplicationShutdown {
nm.notify();
//#region AP deliver
if (this.userEntityService.isLocalUser(user)) {
if (!data.localOnly && this.userEntityService.isLocalUser(user)) {
(async () => {
const noteActivity = await this.renderNoteOrRenoteActivity(data, note);
const dm = this.apDeliverManagerService.createDeliverManager(user, noteActivity);