forked from FoundKeyGang/FoundKey
parent
642a51a558
commit
2de4978a31
2 changed files with 4 additions and 3 deletions
|
@ -16,6 +16,7 @@ You should also include the user name that made the change.
|
||||||
- クライアント: テーマを追加 @syuilo
|
- クライアント: テーマを追加 @syuilo
|
||||||
|
|
||||||
### Bugfixes
|
### Bugfixes
|
||||||
|
- API: stats APIで内部エラーが発生する問題を修正 @syuilo
|
||||||
- クライアント: ソフトミュートですべてがマッチしてしまう場合があるのを修正 @tamaina
|
- クライアント: ソフトミュートですべてがマッチしてしまう場合があるのを修正 @tamaina
|
||||||
- クライアント: デバイスのスクリーンのセーフエリアを考慮するように @syuilo
|
- クライアント: デバイスのスクリーンのセーフエリアを考慮するように @syuilo
|
||||||
- クライアント: 一部環境でサイドバーの投稿ボタンが表示されない問題を修正 @syuilo
|
- クライアント: 一部環境でサイドバーの投稿ボタンが表示されない問題を修正 @syuilo
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import define from '../define';
|
import define from '../define';
|
||||||
import { NoteReactions, Notes, Users } from '@/models/index';
|
import { Instances, NoteReactions, Notes, Users } from '@/models/index';
|
||||||
import { federationChart, driveChart } from '@/services/chart/index';
|
import { } from '@/services/chart/index';
|
||||||
|
|
||||||
export const meta = {
|
export const meta = {
|
||||||
requireCredential: false,
|
requireCredential: false,
|
||||||
|
@ -63,7 +63,7 @@ export default define(meta, async () => {
|
||||||
Users.count({ where: { host: null }, cache: 3600000 }),
|
Users.count({ where: { host: null }, cache: 3600000 }),
|
||||||
NoteReactions.count({ cache: 3600000 }), // 1 hour
|
NoteReactions.count({ cache: 3600000 }), // 1 hour
|
||||||
//NoteReactions.count({ where: { userHost: null }, cache: 3600000 }),
|
//NoteReactions.count({ where: { userHost: null }, cache: 3600000 }),
|
||||||
federationChart.getChart('hour', 1, null).then(chart => chart.instance.total[0]),
|
Instances.count({ cache: 3600000 }),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|
Loading…
Reference in a new issue