diff --git a/public/scripts/manage.js b/public/scripts/manage.js index 2b958f9..a77a7d6 100644 --- a/public/scripts/manage.js +++ b/public/scripts/manage.js @@ -291,8 +291,13 @@ CATEGORIES.push(new Category( row.appendChild(dateCell); const submitterCell = document.createElement('td'); - Data.getAccount(game.submitterID) - .then(data => submitterCell.textContent = data.name); + if(game.submitterID) { + Data.getAccount(game.submitterID) + .then(data => submitterCell.textContent = data.name); + } else { + submitterCell.textContent = game.submitterName; + console.log(game.submitterName); + } row.appendChild(submitterCell); }, async function addGame() {