trim base url when downloading feed icons

This commit is contained in:
Andrew Dolgov 2013-07-30 00:01:58 +04:00
parent 30af06f37f
commit 095ceba2bc

View File

@ -345,7 +345,7 @@ public class FeedsFragment extends Fragment implements OnItemClickListener, OnSh
String baseUrl = ""; String baseUrl = "";
if (!iconsStr.contains("://")) { if (!iconsStr.contains("://")) {
baseUrl = m_prefs.getString("ttrss_url", "") + "/" + iconsStr; baseUrl = m_prefs.getString("ttrss_url", "").trim() + "/" + iconsStr;
} else { } else {
baseUrl = iconsStr; baseUrl = iconsStr;
} }
@ -589,7 +589,7 @@ public class FeedsFragment extends Fragment implements OnItemClickListener, OnSh
private String m_baseUrl; private String m_baseUrl;
public GetIconsTask(String baseUrl) { public GetIconsTask(String baseUrl) {
m_baseUrl = baseUrl; m_baseUrl = baseUrl.trim();
} }
@Override @Override