Problem description

If you receive an error message like the following

Untitled

the reason is likely a bug that affects some users after we release new versions of Code Expert.

Users may end up with an invalid cache in their browser. This invalid cache will cause Code Expert to crash for them.

How to resolve this problem

There are several options to resolve this.

Temporary workarounds

  1. Use a different browser
  2. Use an incognito window of the browser

Recommended workaround

Reset a hidden browser cache (IndexedDB) using the following steps:

  1. Open the developer tools of your browser (instructions for all browsers)

  2. Paste the line of code below into the “Console” tab and press enter to run it:

    indexedDB.deleteDatabase('MeteorDynamicImportCache')
    

    An example of how this looks in Firefox. Other browsers look slightly differently, but all have a «Console» tab in their developer tools.

    An example of how this looks in Firefox. Other browsers look slightly differently, but all have a «Console» tab in their developer tools.

  3. Reload the browser. Code Expert should be working again.