Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,9 @@ public String resolveMeetingLink(String slug) throws Exception {
throw new IllegalArgumentException("Meeting slug is required");
}

// SMS clients sometimes include trailing punctuation when linkifying URLs
slug = slug.replaceAll("[.,:;!?]+$", "");

String shortLink = jitsiLink + "m=" + slug;
VideoCallParameters params = videoCallRepository.findByMeetingLink(shortLink);

Expand Down
Loading