Compare commits

...

7 Commits

Author SHA1 Message Date
おさむのひと
5a99345e63
Merge 26e0b77d83 into f123be38b9 2024-12-19 18:30:56 +09:00
おさむのひと
26e0b77d83
Merge branch 'develop' into fix/15018-check-local-only 2024-11-25 08:49:57 +09:00
おさむのひと
bf82decbc9 fix CHANGELOG.md 2024-11-22 21:27:01 +09:00
おさむのひと
06e65e378c
Merge branch 'develop' into fix/15018-check-local-only 2024-11-22 21:23:49 +09:00
おさむのひと
b45aca2725
Merge branch 'develop' into fix/15018-check-local-only 2024-11-21 21:54:00 +09:00
おさむのひと
36cdb5f8c7 fix CHANGELOG.md 2024-11-21 21:51:58 +09:00
おさむのひと
62104def2c fix(backend): localOnlyなノートの時は配送処理そのものを起動しない 2024-11-21 20:44:46 +09:00
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@
- Fix: ユーザーのプロフィール画面をアドレス入力などで直接表示した際に概要タブの描画に失敗する問題の修正( #15032 )
- Fix: 起動前の疎通チェックが機能しなくなっていた問題を修正
(Cherry-picked from https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/737)
- Fix: 連合OFFで投稿されたートに対する冗長な処理を抑止 ( #15018 )
## 2024.11.0

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);