diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-04-15 23:29:26 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-04-15 23:29:26 +0900 |
| commit | fc66231f8e00454c161cccaf660067d7b660d467 (patch) | |
| tree | 095377b4ae501e9eb38711884370af1ab79761fc /src/server/api/endpoints/users | |
| parent | Fix bug (diff) | |
| download | sharkey-fc66231f8e00454c161cccaf660067d7b660d467.tar.gz sharkey-fc66231f8e00454c161cccaf660067d7b660d467.tar.bz2 sharkey-fc66231f8e00454c161cccaf660067d7b660d467.zip | |
Fix #4701
Diffstat (limited to 'src/server/api/endpoints/users')
| -rw-r--r-- | src/server/api/endpoints/users/notes.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/api/endpoints/users/notes.ts b/src/server/api/endpoints/users/notes.ts index da23be3c55..d3f17bd787 100644 --- a/src/server/api/endpoints/users/notes.ts +++ b/src/server/api/endpoints/users/notes.ts @@ -196,5 +196,5 @@ export default define(meta, async (ps, me) => { const timeline = await query.take(ps.limit!).getMany(); - return await Notes.packMany(timeline, user); + return await Notes.packMany(timeline, me); }); |