-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
bugSomething isn't workingSomething isn't working
Description
The cache busting helper makes the following calls:
window.api.json('totals'),
window.api.json('icons/achievements'),
window.api.json('icons/minions'),
window.api.json('icons/mounts'),
window.api.json('icons/emotes'),
window.api.json('friends'),
window.api.json('supporters'),
window.api.json('translators')
As these APIs respond so quickly, the localStorage mechanism used to cache the data on the client cannot update quick enough, and ultimately only one item is cached at a time.
- Clear localStorage.
- Reload page.
- Witness localStorage. -> totals.json cached, no others cached
- Reload page.
- Witness localStorage -> icons/achievements cached, totals already cached, no others cached.
- Etc.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working