Fix typo in error path

This commit is contained in:
Cameron Gutman 2022-10-31 18:15:36 -05:00
parent 07f9e7e576
commit 6c47627f85

View File

@ -715,7 +715,7 @@ function startGame(host, appID) {
$root.find('sessionUrl0').text().trim() $root.find('sessionUrl0').text().trim()
]); ]);
}, function(failedResumeApp) { }, function(failedResumeApp) {
console.eror('%c[index.js, startGame]', 'color:green;', 'Failed to resume the app! Returned error was' + failedResumeApp); console.error('%c[index.js, startGame]', 'color:green;', 'Failed to resume the app! Returned error was' + failedResumeApp);
showApps(host); showApps(host);
return; return;
}); });