mirror of
https://github.com/discourse/discourse.git
synced 2025-04-19 09:49:06 +08:00
Log errors authenticating with facebook
This commit is contained in:
parent
3b9b492ea6
commit
33a418d537
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user