Use isNotBlank instead of isNoneBlank
Caused NoSuchMethodError on some devices
This commit is contained in:
parent
77647cc154
commit
b147c83731
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue