Merge pull request #69 from Kernald/icons-url

Fetch feed icons from icons_url instead of icons_dir
This commit is contained in:
Andrew Dolgov 2014-10-24 14:01:14 +04:00
commit d63cd5e725

View File

@ -433,7 +433,7 @@ public class FeedsFragment extends Fragment implements OnItemClickListener, OnSh
if (result != null) { if (result != null) {
try { try {
JsonElement iconsUrl = result.getAsJsonObject().get("icons_dir"); JsonElement iconsUrl = result.getAsJsonObject().get("icons_url");
if (iconsUrl != null) { if (iconsUrl != null) {
String iconsStr = iconsUrl.getAsString(); String iconsStr = iconsUrl.getAsString();