this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix infinite reloading

Comment these out because this used to fix an old bug with instances not loaded properly

+3 -3
+3 -3
src/utils/store-utils.js
··· 107 107 return (currentInstance = instances[instance]); 108 108 } catch (e) { 109 109 console.error(e); 110 - alert(`Failed to load instance configuration. Please try again.\n\n${e}`); 110 + // alert(`Failed to load instance configuration. Please try again.\n\n${e}`); 111 111 // Temporary fix for corrupted data 112 - store.local.del('instances'); 113 - location.reload(); 112 + // store.local.del('instances'); 113 + // location.reload(); 114 114 return {}; 115 115 } 116 116 }