Skip to content
Snippets Groups Projects
Unverified Commit 388de9dc authored by MeiMei's avatar MeiMei Committed by GitHub
Browse files

chore, perf: Reduce redis memory (#7816)

* Reduce redis memory

* CHANGELOG

* a
parent 8a0a46b1
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,7 @@
-->
## 12.x.x (unreleased)
- ActivityPub: deliverキューのメモリ使用量を削減
### Improvements
- ActivityPub: リモートユーザーのDeleteアクティビティに対応
......
......@@ -64,7 +64,9 @@ export function deliver(user: ThinUser, content: unknown, to: string | null) {
if (to == null) return null;
const data = {
user,
user: {
id: user.id
},
content,
to
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment