Bug: NS_ERROR_FILE_NO_DEVICE_SPACE

Page auto loaded after being asleep for the weekend. Tried to wake up, the left bar changed as if it was awake but the main section stayed on the welcome screen.

After refreshing the screen stays blank (Dark blue) and the console shows the error below.

The browser being used is firefox. Even after a hard refresh, I am unable to log in.

This then repeats in console:

Oookay. Let’s see.

First of all, the NS_ERROR_FILE_NO_DEVICE_SPACE error is purely client side. Good.

It seems to be triggered when reading cached characters from the browser’s localStorage.
I assume the localStorage and sessionStorage (where all the chat logs are stored between refreshs) has been filled up.

I had code designed to handle that, deleting older log entries when it failed to write new ones. But your error triggered on reading from the storage. I had no checks there.

Closing the tab and opening a new one ( = clearing sessionStorage) should temporarily solve it, right?

/Accipiter