Browse Source

Fix bug where we do not see meeting links.

master
Abhishek Banthia 9 months ago
parent
commit
f7a9515c4b
  1. 23
      Clocker/Events and Reminders/CalendarHandler.swift

23
Clocker/Events and Reminders/CalendarHandler.swift

@ -341,7 +341,8 @@ extension EventCenter {
// Borrowing logic from Ityscal // Borrowing logic from Ityscal
@discardableResult @discardableResult
private func findAppropriateURLs(_ description: String) -> URL? { private func findAppropriateURLs(_ description: String) -> URL? {
guard let results = EventCenter.dataDetector?.matches(in: description, options: .reportCompletion, range: NSRange(location: 0, length: description.count)) else { guard let results = EventCenter.dataDetector?.matches(in: description, options: .reportCompletion, range: NSRange(location: 0, length: description.count)),
results.isEmpty == false else {
return nil return nil
} }
for result in results { for result in results {
@ -401,6 +402,7 @@ extension EventCenter {
|| actualLink.contains("facetime.apple.com/join") || actualLink.contains("facetime.apple.com/join")
|| actualLink.contains("workplace.com/meet") || actualLink.contains("workplace.com/meet")
|| actualLink.contains("youcanbook.me/zoom/") || actualLink.contains("youcanbook.me/zoom/")
|| actualLink.contains("fb.workplace.com/groupcall")
{ {
if let meetingLink = result.url { if let meetingLink = result.url {
return meetingLink return meetingLink
@ -423,20 +425,21 @@ extension EventCenter {
EventCenter.dataDetector = dataDetector EventCenter.dataDetector = dataDetector
} }
if let location = event.location { var meetingURL: URL? = nil
return findAppropriateURLs(location)
}
if let url = event.url { if let url = event.url {
print("--- URL exists \(url)") meetingURL = findAppropriateURLs(url.absoluteString)
return findAppropriateURLs(url.absoluteString)
} }
if let notes = event.notes { if let notes = event.notes, meetingURL == nil {
return findAppropriateURLs(notes) meetingURL = findAppropriateURLs(notes)
}
if let location = event.location, meetingURL == nil {
meetingURL = findAppropriateURLs(location)
} }
return nil return meetingURL
} }
private func attendingStatusForUser(_ event: EKEvent) -> EKParticipantStatus { private func attendingStatusForUser(_ event: EKEvent) -> EKParticipantStatus {

Loading…
Cancel
Save