Use isNotBlank instead of isNoneBlank

Caused NoSuchMethodError on some devices
This commit is contained in:
daniel oeh 2014-12-08 10:36:36 +01:00
parent 77647cc154
commit b147c83731
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ public class DefaultOnlineFeedViewActivity extends OnlineFeedViewActivity {
subscribeButton = (Button) header.findViewById(R.id.butSubscribe);
if (feed.getImage() != null && StringUtils.isNoneBlank(feed.getImage().getDownload_url())) {
if (feed.getImage() != null && StringUtils.isNotBlank(feed.getImage().getDownload_url())) {
Picasso.with(this)
.load(feed.getImage().getDownload_url())
.fit()