You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently rebuilt Galyleo studio, for the first time in a number of months. It failed to load (it loads just fine in Studio), with the following error message in the console:
app-7690e3e6.js:86534 Uncaught (in promise) TypeError: Cannot read properties of null (reading 'get')
at GalyleoStudioWorld.GalyleoStudioWorld_withTopBarDo_ (app-7690e3e6.js:86534:60)
at GalyleoStudioWorld.LivelyWorld_makeDirty_ (app-7690e3e6.js:43005:20)
at ChangeManager.ChangeManager__record_ (__rootModule___commonjs-entry-6973bbff.js:43233:102)
at ChangeManager.ChangeManager_addValueChange_ (__rootModule___commonjs-entry-6973bbff.js:43197:25)
at GalyleoStudioWorld.Morph_addValueChange_ (__rootModule___commonjs-entry-6973bbff.js:51788:43)
at GalyleoStudioWorld.Morph_setProperty_ (__rootModule___commonjs-entry-6973bbff.js:51544:25)
at GalyleoStudioWorld.defaultSetter (__rootModule___commonjs-entry-6973bbff.js:53839:22)
at GalyleoStudioWorld.setter [as morphCommentMap] (__rootModule___commonjs-entry-6973bbff.js:4448:31)
at GalyleoStudioWorld.initialize (app-7690e3e6.js:46059:40)
at Object.prepareInstanceForProperties (__rootModule___commonjs-entry-6973bbff.js:4627:41)
As I traced the code, this is the function that is throwing the exception:
checks to see if the morph needs to be rendered, and if not initiates a withTopBarDo callback, assuming that withTopBarDo hadn't been overridden (as it has in Galyleo).
I recently rebuilt Galyleo studio, for the first time in a number of months. It failed to load (it loads just fine in Studio), with the following error message in the console:
As I traced the code, this is the function that is throwing the exception:
And it appears (tracing the code further up the stack) that a new property
MorphCommentMap
has been added as a default property, and thatchecks to see if the morph needs to be rendered, and if not initiates a
withTopBarDo
callback, assuming thatwithTopBarDo
hadn't been overridden (as it has in Galyleo).LivelyWorld.makeDirty
is given here:and the Galyleo version here:
The text was updated successfully, but these errors were encountered: