Description
Hello there, I want to ask how to prevent the zoom form caching the username in meeting, when the user changes his name it doesn’t change it immediately and takes long time even if two users used the zoom web SDKs on same browser after each other zoom is raising the problem, and it show the name of the user who logged in first.
Error
There is no error message
Which Web Meeting SDK version?
It happened first in 1.9.7, then we upgraded to 1.9.9 and the problem still happening
To Reproduce(If applicable)
Steps to reproduce the behavior:
First user is logged out
Second user logged in, on same browser
Zoom meeting shows the previous user username
To Reproduce(If applicable)
Steps to reproduce the second behavior:
I think the best method to call these commands is via a beforeUnload event. That way, when the page changes after leaving a meeting, for example, the cache is cleared and the page is reloaded all at once.
I am trying to put
localStorage.clear(); & sessionStorage.clear();
both and also trying one of them in unload event; the names caching problem solved but the problem of duplicating the participants when refreshing the browser is still exist. How to solve it?