From 74f2696d0998814a7135438a7cf098af337e1a63 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Wed, 25 Dec 2019 16:07:54 -0500 Subject: [PATCH] [F] Fix formatting issues --- src/App.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;