Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ASDKgram-Swift to avoid 'error parsing JSON within PhotoModel Init' #913

Merged
merged 1 commit into from
May 8, 2018
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
13 changes: 11 additions & 2 deletions examples_extra/ASDKgram-Swift/ASDKgram-Swift/PhotoModel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,18 @@ struct PhotoModel {

init?(dictionary: JSONDictionary) {

guard let url = dictionary["image_url"] as? String, let date = dictionary["created_at"] as? String, let photoID = dictionary["id"] as? Int, let descriptionText = dictionary["name"] as? String, let likesCount = dictionary["positive_votes_count"] as? Int else { print("error parsing JSON within PhotoModel Init"); return nil }
guard let images = dictionary["images"] as? [[String: Any]],
let url = images[0]["url"] as? String,
let date = dictionary["created_at"] as? String,
let photoID = dictionary["id"] as? Int,
let descriptionText = dictionary["name"] as? String,
let likesCount = dictionary["positive_votes_count"] as? Int else
{ print("error parsing JSON within PhotoModel Init"); return nil }

guard let user = dictionary["user"] as? JSONDictionary, let username = user["username"] as? String, let ownerPicURL = user["userpic_url"] as? String else { print("error parsing JSON within PhotoModel Init"); return nil }
guard let user = dictionary["user"] as? JSONDictionary,
let username = user["username"] as? String,
let ownerPicURL = user["userpic_url"] as? String else
{ print("error parsing JSON within PhotoModel Init"); return nil }

self.url = url
self.photoID = photoID
Expand Down