tablechamp-app
tablechamp-app copied to clipboard
mission / at firebase playersgame path
on line 1039 of tablechamp.js, you have
var newPlayersGameKey = fbdb.ref().child('playersgame' + key).push().key;
shouldn't it be
var newPlayersGameKey = fbdb.ref().child('playersgame/' + key).push().key;
Does the missing "/" matter?