Browse Source

refactor: TopicTask parsing error information

develop
Ezerous 2 years ago
parent
commit
3f9a036af1
  1. 2
      app/src/main/java/gr/thmmy/mthmmy/activities/topic/tasks/TopicTask.java

2
app/src/main/java/gr/thmmy/mthmmy/activities/topic/tasks/TopicTask.java

@ -125,7 +125,7 @@ public class TopicTask extends AsyncTask<String, Void, TopicTaskResult> {
0, 0, 0, 0, null, null); 0, 0, 0, 0, null, null);
} }
else { else {
Timber.e(e, "Topic parse failed"); Timber.e(e, "Topic parsing failed (%s)!", newPageUrl);
return new TopicTaskResult(ResultCode.PARSING_ERROR, null, null, null, return new TopicTaskResult(ResultCode.PARSING_ERROR, null, null, null,
0, 0, 0, 0, null, null); 0, 0, 0, 0, null, null);
} }

Loading…
Cancel
Save