diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-06-09 04:14:26 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-06-09 04:14:26 +0900 |
| commit | c78945436e39121f46e083eac7a6572ca2efe2d2 (patch) | |
| tree | b26036a9f38bda54b865e704f8bcd477f2caac0e /src/client/app/common/views/widgets/server.vue | |
| parent | サーバーの統計情報をメモリに記憶するようにするなど (diff) | |
| download | misskey-c78945436e39121f46e083eac7a6572ca2efe2d2.tar.gz misskey-c78945436e39121f46e083eac7a6572ca2efe2d2.tar.bz2 misskey-c78945436e39121f46e083eac7a6572ca2efe2d2.zip | |
#1686
Diffstat (limited to 'src/client/app/common/views/widgets/server.vue')
| -rw-r--r-- | src/client/app/common/views/widgets/server.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/app/common/views/widgets/server.vue b/src/client/app/common/views/widgets/server.vue index 2fdd60499b..d796a3ae05 100644 --- a/src/client/app/common/views/widgets/server.vue +++ b/src/client/app/common/views/widgets/server.vue @@ -55,11 +55,11 @@ export default define({ this.fetching = false; }); - this.connection = (this as any).os.streams.serverStream.getConnection(); - this.connectionId = (this as any).os.streams.serverStream.use(); + this.connection = (this as any).os.streams.serverStatsStream.getConnection(); + this.connectionId = (this as any).os.streams.serverStatsStream.use(); }, beforeDestroy() { - (this as any).os.streams.serverStream.dispose(this.connectionId); + (this as any).os.streams.serverStatsStream.dispose(this.connectionId); }, methods: { toggle() { |