Skip to content

Commit

Permalink
Make zoom regex less specified
Browse files Browse the repository at this point in the history
  • Loading branch information
leits committed Sep 1, 2020
1 parent 521361e commit 08422cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MeetingBar/Constants.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ struct TitleLengthLimits {
struct LinksRegex {
let meet = try! NSRegularExpression(pattern: #"https://meet.google.com/[a-z-]+"#)
let hangouts = try! NSRegularExpression(pattern: #"https://hangouts.google.com/.*"#)
let zoom = try! NSRegularExpression(pattern: #"https://([a-z0-9.]+)?zoom.(us|com.cn)/j/[a-zA-Z0-9?&=]+"#)
let zoom = try! NSRegularExpression(pattern: #"https://([a-z0-9.]+)?zoom.(us|com.cn)/j/.*"#)
let teams = try! NSRegularExpression(pattern: #"https://teams.microsoft.com/l/meetup-join/[a-zA-Z0-9_%\/=\-\+\.?]+"#)
let webex = try! NSRegularExpression(pattern: #"https://([a-z0-9.]+)?webex.com/.*"#)
let jitsi = try! NSRegularExpression(pattern: #"https://meet.jit.si/.*"#)
Expand Down

0 comments on commit 08422cb

Please sign in to comment.