summaryrefslogtreecommitdiff
path: root/src/web/app/common/scripts/streaming/othello-game.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-03-15 19:53:46 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-03-15 19:53:46 +0900
commit1439c3245b961de910b753ff2d5069c17e79af4b (patch)
tree0ea43246eac335af39e32f2910b3131ce3ec782d /src/web/app/common/scripts/streaming/othello-game.ts
parent:v: (diff)
downloadmisskey-1439c3245b961de910b753ff2d5069c17e79af4b.tar.gz
misskey-1439c3245b961de910b753ff2d5069c17e79af4b.tar.bz2
misskey-1439c3245b961de910b753ff2d5069c17e79af4b.zip
:v:
Diffstat (limited to 'src/web/app/common/scripts/streaming/othello-game.ts')
-rw-r--r--src/web/app/common/scripts/streaming/othello-game.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/web/app/common/scripts/streaming/othello-game.ts b/src/web/app/common/scripts/streaming/othello-game.ts
index cdf46d5d8d..b85af8f72b 100644
--- a/src/web/app/common/scripts/streaming/othello-game.ts
+++ b/src/web/app/common/scripts/streaming/othello-game.ts
@@ -1,8 +1,9 @@
import Stream from './stream';
+import MiOS from '../../mios';
export class OthelloGameStream extends Stream {
- constructor(me, game) {
- super('othello-game', {
+ constructor(os: MiOS, me, game) {
+ super(os, 'othello-game', {
i: me ? me.token : null,
game: game.id
});