Fix JS crashing if initial-state is not set (#2193)

Fixes issues with the JS for at least sign-up pages not working
local
Claire 1 year ago committed by GitHub
parent 2ebbfebfe9
commit 5b58ebb04f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      app/javascript/flavours/glitch/initial_state.js

@ -96,10 +96,12 @@ const element = document.getElementById('initial-state');
const initialState = element?.textContent && JSON.parse(element.textContent);
// Glitch-soc-specific “local settings”
try {
initialState.local_settings = JSON.parse(localStorage.getItem('mastodon-settings'));
} catch (e) {
initialState.local_settings = {};
if (initialState) {
try {
initialState.local_settings = JSON.parse(localStorage.getItem('mastodon-settings'));
} catch (e) {
initialState.local_settings = {};
}
}
/**

Loading…
Cancel
Save