Commit 9acaef06 by wjg

1.0.14

parent 1c9821d5
......@@ -127,13 +127,13 @@ public class InteractionPresentation extends Presentation {
try {
Object obj = msg.obj;
if (msg.what != 1 || obj == null) {
Utils.showToast(getContext(), R.string.error_get_posters);
// Utils.showToast(getContext(), R.string.error_get_posters);
setErrorViews();
return;
}
PostersVo postersVo = JsonUtils.readValue(obj, PostersVo.class);
if (postersVo == null || CollectionUtils.isEmpty(postersVo.getPosters())) {
Utils.showToast(getContext(), R.string.error_get_posters);
// Utils.showToast(getContext(), R.string.error_get_posters);
setErrorViews();
return;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment