Replies: 3 comments
-
Hey @qsdamar thank you for the kind words! Unfortunately what you are suggesting would be a major vulnerability if possible, If you are self-hosting jitsi then you would be able to have the I recommend you checkout their community for more information on how to setup this directly within a Jitsi instance you manage: |
Beta Was this translation helpful? Give feedback.
-
Hello @this-fifo, thank you for the quick answer. Yes, we are using self-hosted Jitsi but the client app is a bit specific. I'm using React inside the Electron desktop app, and as far as I know, the Electron release build does not have a domain (where the I'm not sure if you are familiar with this approach, but any answer would be appreciated. |
Beta Was this translation helpful? Give feedback.
-
Hey @qsdamar , I converted the original issue to a discussion topic as this is beyond the scope of this library. react-jutsu just acts as a wrapper in React to their embedded client side video app, it has too many limitations for what you want to do. Doing it on the server side is a better solution for you I think Electron behaves the same as a browser in regards to the content security policy of an Since you are self hosting jitsi, I strongly recommend you configure it to your liking by adjusting the settings at the server level instead of attempting overrides at the client side (this way they are more likely to stick and less prone to environment specific quirks) For example, when you look at the https://github.com/jitsi/jitsi-meet/blob/master/debian/rules#L6 I also recommend following the suggestion of that answer in their community, this is out of scope for this library unfortunately as the Jitsi Meet API does not support that configuration which means you have to do it on their end If following that community answer I provided doesn't work for you, I recommend you ask this in there to see if you get a more specific help on the server side configuration Good luck! |
Beta Was this translation helpful? Give feedback.
-
Hello and thank you for such a great library.
Since we are not able to override the Jitsi language once the
language
key set to localStorage, is there a way to manually inject a script to an iframe?I'm trying to achieve something like this:
The code written above is not working, it's just for example of what I'm thinking is possible. I would like to remove the
language
key on e.g.onMeetingEnd
event, that way I'll be able to change language each time I start a new call.Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions