1
0
mirror of https://github.com/akaessens/NoFbEventScraper synced 2025-06-05 23:29:13 +02:00

fix overlap of bottom nav bar, add error messages to fields

This commit is contained in:
akaessens
2020-08-15 00:31:43 +02:00
parent 7c975b8d7e
commit e08497fd2d
4 changed files with 69 additions and 48 deletions

View File

@ -117,7 +117,7 @@ public class FbScraper extends AsyncTask<Void, Void, Void> {
String event_description = fixLinks(readFromJson(reader, "description"));
String location = fixLocation(readFromJson(reader, "location"));
String image_url = null;
String image_url = "";
try {
image_url = readFromJson(reader, "image"); // get from json
@ -134,6 +134,7 @@ public class FbScraper extends AsyncTask<Void, Void, Void> {
throw new Exception();
} else {
this.event = new FbEvent(event_name, event_start, event_end, event_description, location, image_url);
//this.event = new FbEvent("", "", "", "", "", "");
}
} catch (Exception e) {