diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-09-20 23:24:10 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-09-20 23:24:10 +0900 |
| commit | bb9fc56cc16e668d3b5978a4bfd13743c468cda3 (patch) | |
| tree | e20c664d7f275341b211be080e1d9ba5145aab1f /src/queue/index.ts | |
| parent | update contribution guide (diff) | |
| parent | enhance: ノートヘッダーにflex-shrinkを設定し、Acctを優先的... (diff) | |
| download | sharkey-bb9fc56cc16e668d3b5978a4bfd13743c468cda3.tar.gz sharkey-bb9fc56cc16e668d3b5978a4bfd13743c468cda3.tar.bz2 sharkey-bb9fc56cc16e668d3b5978a4bfd13743c468cda3.zip | |
Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop
Diffstat (limited to 'src/queue/index.ts')
| -rw-r--r-- | src/queue/index.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/queue/index.ts b/src/queue/index.ts index 4ca7998e61..ee34ed47e4 100644 --- a/src/queue/index.ts +++ b/src/queue/index.ts @@ -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 }; |