stub default falsey values for initState function to prevent crash on 500
This commit is contained in:
parent
572c4241f9
commit
0ac8ca002b
1 changed files with 15 additions and 6 deletions
|
@ -5,13 +5,22 @@ const socket = require('../../io');
|
|||
|
||||
export const initState = (): state => {
|
||||
return {
|
||||
user: {},
|
||||
user: { username: '', email: '', id: 0 },
|
||||
errors: {},
|
||||
currentRoom: {},
|
||||
messages: {},
|
||||
games: {},
|
||||
currentRoom: { description: '', id: 0, language: '', name: '' },
|
||||
messages: [ {
|
||||
admin: false, content: '', username: ''
|
||||
} ],
|
||||
games: [ {
|
||||
boardSize: 0, handicap: 0, id: 0, komi: 0.0, open: false,
|
||||
playerBlack: '', playerBlackRank: '', playerWhite: '',
|
||||
playerWhiteRank: '', winType: null
|
||||
} ],
|
||||
joinGame: {},
|
||||
socket: {},
|
||||
connect: {}
|
||||
socket: {
|
||||
connected: false,
|
||||
nsp: ''
|
||||
},
|
||||
connect: { location: '', type: '' }
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue