fix missed use of hardcoded endpoint URL

This commit is contained in:
dosiecki 2017-01-02 23:58:48 -08:00
parent a7e84ccfe9
commit 6f9a72b91a

View file

@ -58,7 +58,7 @@ public class ImageLoader {
}
if (url.startsWith("/")) {
url = APIConstants.NEWSBLUR_URL + url;
url = APIConstants.buildUrl(url);
}
imageViewMappings.put(imageView, url);
@ -75,7 +75,7 @@ public class ImageLoader {
imageView.setImageResource(emptyRID);
}
}
private class PhotoToLoad {
public String url;
public ImageView imageView;