Skip to content
Snippets Groups Projects
Commit ba64de33 authored by syuilo's avatar syuilo
Browse files

Fix bug

parent dc1d7fa9
No related branches found
No related tags found
No related merge requests found
......@@ -3,8 +3,10 @@ import MiOS from '../../../../../mios';
export class ReversiGameStream extends Stream {
constructor(os: MiOS, me, game) {
super(os, 'games/reversi-game', {
i: me ? me.token : null,
super(os, 'games/reversi-game', me ? {
i: me.token,
game: game.id
} : {
game: game.id
});
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment