Skip to content

Commit

Permalink
Maybe this will satisfy Github CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jaanus committed Aug 10, 2024
1 parent 5182ee1 commit 10864cf
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ public struct CanopyResultRecord: Sendable {
struct CKRecordEncryptedValuesReader: CanopyRecordValueGetting {
let record: CKRecord
subscript(key: String) -> CKRecordValueProtocol? {
return record.encryptedValues[key]
guard let value = record.encryptedValues[key] as? CKRecordValueProtocol else {
return nil
}
return value
}
}

Expand Down

0 comments on commit 10864cf

Please # to comment.