Skip to content

Commit

Permalink
Merge pull request #725 from stakwork/tt/fix/jitsi-call-room
Browse files Browse the repository at this point in the history
Fix to remove url params from call room name on jitsi links
  • Loading branch information
tomastiminskas authored Feb 28, 2024
2 parents 83f442f + bc4c919 commit da8bac3
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 da8bac3

Please sign in to comment.