mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
fix missed use of hardcoded endpoint URL
This commit is contained in:
parent
a7e84ccfe9
commit
6f9a72b91a
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue