Fetch feed icons from icons_url instead of icons_dir

This commit is contained in:
Marc Plano-Lesay 2014-10-24 10:58:46 +02:00
parent 6e8c7a71fa
commit d167f0237b

View File

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