Jitsi reenable self view
Jitsi Meet is great software. It's gotten better and better over time! Unfortunately, there's one little tiny problem. If you hide your self-view, you see a little notification that says you can re-enable the view from Settings. This information is wrong, however. So you have to run a little javascript scriptlet and somehow reload the page, without it overwriting this value. I haven't quite settled on what exact order of operations (run javascript, reload page, log out of meeting?) needs to happen, but hopefully somebody else can move this further along and make it work in the end.
a = JSON.parse(localStorage["features/base/settings"]); a["disableSelfView"] = false; localStorage.setItem("features/base/settings",JSON.stringify(a));
Comments