diff --git a/src/App.ts b/src/App.ts index 57c0b6a..22679ee 100644 --- a/src/App.ts +++ b/src/App.ts @@ -29,7 +29,7 @@ class Artwork if (json.video == null) json.video = type.video; // Check image null case - let base = json.date.split(' ').join('-') + json.title.split(' ')[0].toLowerCase() + '/'; + let base = json.date.split(' ').join('-') + '-' + json.title.split(' ')[0].toLowerCase() + '/'; if (json.file == null) json.file = base + 'public.' + json.format; if (json.thumbnail == null) json.thumbnail = base + 'thumb.' + json.format;