Log errors authenticating with facebook

This commit is contained in:
Robin Ward 2016-06-10 12:05:14 -04:00
parent 3b9b492ea6
commit 33a418d537

View file

@ -5,7 +5,12 @@ export default {
if (window.location.search.indexOf('authComplete=true') !== -1) {
const lastAuthResult = localStorage.getItem('lastAuthResult');
if (lastAuthResult) {
Discourse.authenticationComplete(JSON.parse(lastAuthResult));
try {
Discourse.authenticationComplete(JSON.parse(lastAuthResult));
} catch(e) {
document.write(`<p>lastAuthResult: ${lastAuthResult}</p>`);
document.write(e);
}
}
}
}