X-Git-Url: http://git.nikiroo.be/?p=nikiroo-utils.git;a=blobdiff_plain;f=supported%2FFimfictionApi.java;h=43d01d19494f616c6811e5757da4a6f2e14c83cc;hp=6c6d7ba31caf2197356b68168447c7871b257a52;hb=bff19b54d345ceb9e14aef616b53c013e93a0417;hpb=3fe74d130543156e3cbf8905e60ae1e84911be85 diff --git a/supported/FimfictionApi.java b/supported/FimfictionApi.java index 6c6d7ba..43d01d1 100644 --- a/supported/FimfictionApi.java +++ b/supported/FimfictionApi.java @@ -124,7 +124,8 @@ class FimfictionApi extends BasicSupport { meta.setTitle(getKeyJson(json, 0, "type", "story", "title")); meta.setAuthor(getKeyJson(json, 0, "type", "user", "name")); - meta.setDate(getKeyJson(json, 0, "type", "story", "date_published")); + meta.setDate(bsHelper.formatDate( + getKeyJson(json, 0, "type", "story", "date_published"))); meta.setTags(getTags()); meta.setSource(getType().getSourceName()); meta.setUrl(getSource().toString());