From 318c3dd374fff535bf620e77ed9da071fee33cb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20J=C3=B6nsson?= Date: Tue, 13 Mar 2018 11:11:17 +0100 Subject: [PATCH] Change book id, to help with iBooks fix --- src/FimFic2Epub.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FimFic2Epub.js b/src/FimFic2Epub.js index 8eb269b..881f162 100644 --- a/src/FimFic2Epub.js +++ b/src/FimFic2Epub.js @@ -179,7 +179,7 @@ class FimFic2Epub extends Emitter { this.pcache.metadata = FimFic2Epub.fetchStoryInfo(this.storyId) .then((storyInfo) => { this.storyInfo = storyInfo - this.storyInfo.uuid = 'urn:fimfiction:' + this.storyInfo.id + this.storyInfo.uuid = 'url:' + this.storyInfo.url this.filename = FimFic2Epub.getFilename(this.storyInfo) this.storyInfo.chapters.forEach((chapter) => { if (chapter.date_modified > this.storyInfo.date_modified) {