X-Git-Url: https://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Fsupported%2FBasicSupport.java;h=9b56f885d94a14ff1025b3833aa34209c48374dd;hb=1dbed6237611f74292af13f20f9d80c446a60020;hp=56a3bb80cb6d51fe40a9c4d830e12cb275102d76;hpb=29ff5d3cf736a65f02325f373a33e79f591a2bd6;p=fanfix.git diff --git a/src/be/nikiroo/fanfix/supported/BasicSupport.java b/src/be/nikiroo/fanfix/supported/BasicSupport.java index 56a3bb8..9b56f88 100644 --- a/src/be/nikiroo/fanfix/supported/BasicSupport.java +++ b/src/be/nikiroo/fanfix/supported/BasicSupport.java @@ -272,7 +272,14 @@ public abstract class BasicSupport { pg.setProgress(30); Story story = new Story(); + MetaData meta = getMeta(); + meta.setType(getType().toString()); + meta.setSource(getType().getSourceName()); + if (meta.getPublisher() == null) { + meta.setPublisher(getType().getSourceName()); + } + if (meta.getCreationDate() == null || meta.getCreationDate().trim().isEmpty()) { meta.setCreationDate(bsHelper @@ -347,6 +354,9 @@ public abstract class BasicSupport { Scanner scan = new Scanner(in); scan.useDelimiter("\0"); try { + if(!scan.hasNext()) + throw new IOException("The given input was empty"); + return new JSONObject(scan.next()); } catch (JSONException e) { throw new IOException(e);