Skip to content

Commit

Permalink
Merge pull request Twitter4J#114 from vadims/fix_mobile_retina_url
Browse files Browse the repository at this point in the history
fix mobile retina profile banner URL
  • Loading branch information
yusuke committed Oct 22, 2013
2 parents 8618a5a + 5b9593c commit fed8697
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ public String getProfileBannerMobileURL() {

@Override
public String getProfileBannerMobileRetinaURL() {
return profileBannerImageUrl != null ? profileBannerImageUrl + "/ipad_retina" : null;
return profileBannerImageUrl != null ? profileBannerImageUrl + "/mobile_retina" : null;
}

/**
Expand Down

0 comments on commit fed8697

Please sign in to comment.