Skip to content

Commit

Permalink
Fix to remove url params from call room name on jitsi links
Browse files Browse the repository at this point in the history
  • Loading branch information
tomastiminskas committed Feb 28, 2024
1 parent 83f442f commit bc4c919
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ value class SphinxCallLink(val value: String) {
get() = value.substringBefore("sphinx.call")

inline val callRoom : String
get() = "sphinx.call." + value.substringAfter("sphinx.call.").substringBefore("#")
get() = "sphinx.call." + value.substringAfter("sphinx.call.").substringBefore("#").substringBefore("?")

inline val callServerUrl : URL?
get() {
Expand Down

0 comments on commit bc4c919

Please sign in to comment.