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
It seems really keen to rely on the cached version, which is a PITA when you make a change and wonder why it hasn't worked, and could also be a problem if we're hoping for changes made to hosted riot instances to propogate out without advising users to press whatever key chord is sufficiently refreshy to actually pull the fresh config.
The text was updated successfully, but these errors were encountered:
I had the same problem just a minute ago.
My "solution" is a quick & dirty fix:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<button onclick="localStorage.clear(); window.location='https://myriothost/#/login'">Click here to reset Riot and delete your loginsession</button>
</body>
</html>
It's a helper that deletes the browsers local storage for the current origin.
I placed it in the riot directory so it runs under the same subdomain as my riot instance.
A clean local storage triggers the download of config.json.
It seems really keen to rely on the cached version, which is a PITA when you make a change and wonder why it hasn't worked, and could also be a problem if we're hoping for changes made to hosted riot instances to propogate out without advising users to press whatever key chord is sufficiently refreshy to actually pull the fresh config.
The text was updated successfully, but these errors were encountered: