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 @@ -68,7 +68,7 @@ class RemoteImage: AsyncImage {
func full(finishedRetrievingFullImage: @escaping (UIImage?) -> ()) {
let task = URLSession.shared.dataTask(with: fullImageURL) { data, response, error in
guard let data = data, error == nil else {
// If any error occured, calls the callback without an image
// If any error occurred, calls the callback without an image
finishedRetrievingFullImage(nil)
return
}
Expand Down