Skip to content

Commit

Permalink
Merge pull request #5 from pixlee/bugz/bugz-4830/KB
Browse files Browse the repository at this point in the history
correct content type
  • Loading branch information
kj13ennett authored May 1, 2019
2 parents 01fa77c + 6425edc commit 0aa693a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pixleesdk/src/main/java/com/pixlee/pixleesdk/PXLPhoto.java
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ public PXLPhoto(JSONObject obj, PXLAlbum album) {
this.userName = obj.getString("user_name");
this.connectedUserId = obj.optInt("connected_user_id");
this.source = obj.getString("source");
this.contentType = obj.optString("contentType");
this.contentType = obj.optString("content_type");
this.dataFileName = obj.optString("data_file_name");
this.mediumUrl = JsonUtils.getURL("medium_url", obj);
this.bigUrl = JsonUtils.getURL("big_url", obj);
Expand Down

0 comments on commit 0aa693a

Please sign in to comment.