
Hey there, I'm actually a professional javascript programmer, so I'm pretty sure I know what happened, but here it is: I had a popup blocker extension loaded in chrome when I tried to make a new folder in my journal. This of course stopped the native dialog box where you accept the new string for the folder name. As a result, I think a journal folder was saved with no title. When I reload the game, I can no longer see any of my old journal entries. When I open the chrome javascript inspector sure enough, right after a console comment indicating you've loaded the journal data... app.js?1457999782:30 Final set zoom! app.js?1457999782:43 Refresh Journal List! app.js?1457999782:31 Uncaught TypeError: e.replace is not a function This is presumably because the code has been minified and is attempting to run a replace() method against a null value instead of the string value it is supposed to have. Can you guys delete or update that null-valued folder name in your DB? (And perhaps consider implementing some server-side data type validation in your storage endpoint. :)