X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=supported%2FBasicSupport_Deprecated.java;h=bc3738a211bc22b92ac8811e85a549dd17777618;hb=bff19b54d345ceb9e14aef616b53c013e93a0417;hp=98b74db5d0567f9d415b6da23a3d849a79faa8ed;hpb=920af1c747538e949df24d29cf778d597be9a482;p=nikiroo-utils.git diff --git a/supported/BasicSupport_Deprecated.java b/supported/BasicSupport_Deprecated.java index 98b74db..bc3738a 100644 --- a/supported/BasicSupport_Deprecated.java +++ b/supported/BasicSupport_Deprecated.java @@ -205,8 +205,9 @@ public abstract class BasicSupport_Deprecated extends BasicSupport { Story story = new Story(); MetaData meta = getMeta(url, getInput()); if (meta.getCreationDate() == null - || meta.getCreationDate().isEmpty()) { - meta.setCreationDate(StringUtils.fromTime(new Date().getTime())); + || meta.getCreationDate().trim().isEmpty()) { + meta.setCreationDate(bsHelper.formatDate( + StringUtils.fromTime(new Date().getTime()))); } story.setMeta(meta); pg.put("meta", meta); @@ -269,8 +270,6 @@ public abstract class BasicSupport_Deprecated extends BasicSupport { pgMeta.setProgress(pgMeta.getMax()); // 10% } - pg.setName("Retrieving " + story.getMeta().getTitle()); - setCurrentReferer(url); Progress pgGetChapters = new Progress();