Merge b45aca2725
into 752606fe88
This commit is contained in:
commit
a129f2ac6d
|
@ -68,6 +68,7 @@
|
||||||
- Fix: アカウント削除のモデレーションログが動作していないのを修正 (#14996)
|
- Fix: アカウント削除のモデレーションログが動作していないのを修正 (#14996)
|
||||||
- Fix: リノートミュートが新規投稿通知に対して作用していなかった問題を修正
|
- Fix: リノートミュートが新規投稿通知に対して作用していなかった問題を修正
|
||||||
- Fix: セキュリティに関する修正
|
- Fix: セキュリティに関する修正
|
||||||
|
- Fix: 連合OFFで投稿されたノートに対する冗長な処理を抑止 ( #15018 )
|
||||||
|
|
||||||
### Misskey.js
|
### Misskey.js
|
||||||
- Fix: Stream初期化時、別途WebSocketを指定する場合の型定義を修正
|
- Fix: Stream初期化時、別途WebSocketを指定する場合の型定義を修正
|
||||||
|
|
|
@ -677,7 +677,7 @@ export class NoteCreateService implements OnApplicationShutdown {
|
||||||
nm.notify();
|
nm.notify();
|
||||||
|
|
||||||
//#region AP deliver
|
//#region AP deliver
|
||||||
if (this.userEntityService.isLocalUser(user)) {
|
if (!data.localOnly && this.userEntityService.isLocalUser(user)) {
|
||||||
(async () => {
|
(async () => {
|
||||||
const noteActivity = await this.renderNoteOrRenoteActivity(data, note);
|
const noteActivity = await this.renderNoteOrRenoteActivity(data, note);
|
||||||
const dm = this.apDeliverManagerService.createDeliverManager(user, noteActivity);
|
const dm = this.apDeliverManagerService.createDeliverManager(user, noteActivity);
|
||||||
|
|
Loading…
Reference in New Issue