Fix bug
This commit is contained in:
parent
251bf4bd61
commit
5875409841
2 changed files with 4 additions and 1 deletions
|
@ -89,6 +89,9 @@ Misskey v12では、クライアントが設計し直され、全く新しいUI
|
||||||
* TypeError: Cannot read property 'stack' of undefined が出ることがある問題を修正
|
* TypeError: Cannot read property 'stack' of undefined が出ることがある問題を修正
|
||||||
* AP: audience (visibility) パースの修正
|
* AP: audience (visibility) パースの修正
|
||||||
* Pages: VERSION 変数が常に null な問題を修正
|
* Pages: VERSION 変数が常に null な問題を修正
|
||||||
|
* Pages: MY_NOTES_COUNT 変数が常に null な問題を修正
|
||||||
|
* Pages: MY_FOLLOWERS_COUNT 変数が常に null な問題を修正
|
||||||
|
* Pages: MY_FOLLOWING_COUNT 変数が常に null な問題を修正
|
||||||
* Pages: DRPWPMが最初のしか出てこない問題を修正
|
* Pages: DRPWPMが最初のしか出てこない問題を修正
|
||||||
|
|
||||||
11.37.1 (2020/01/07)
|
11.37.1 (2020/01/07)
|
||||||
|
|
|
@ -65,7 +65,7 @@ export class PageRepository extends Repository<Page> {
|
||||||
createdAt: page.createdAt.toISOString(),
|
createdAt: page.createdAt.toISOString(),
|
||||||
updatedAt: page.updatedAt.toISOString(),
|
updatedAt: page.updatedAt.toISOString(),
|
||||||
userId: page.userId,
|
userId: page.userId,
|
||||||
user: Users.pack(page.user || page.userId),
|
user: Users.pack(page.user || page.userId, me, { detail: true }),
|
||||||
content: page.content,
|
content: page.content,
|
||||||
variables: page.variables,
|
variables: page.variables,
|
||||||
title: page.title,
|
title: page.title,
|
||||||
|
|
Loading…
Reference in a new issue