From 15a8c921861703391fd740975d25ea727431a1ea Mon Sep 17 00:00:00 2001 From: tycrek Date: Fri, 18 Jun 2021 02:05:41 -0600 Subject: [PATCH] final DeepSource fixes for tonight --- ass.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ass.js b/ass.js index 9d0c41e..49d7c48 100755 --- a/ass.js +++ b/ass.js @@ -114,9 +114,9 @@ function startup() { .then(() => Promise.all([Thumbnail(req.file), Vibrant(req.file), Hash(req.file)])) // skipcq: JS-0086 .then(([thumbnail, vibrant, sha1]) => ( - req.file.thumbnail = thumbnail, - req.file.vibrant = vibrant, - req.file.sha1 = sha1 + req.file.thumbnail = thumbnail,// skipcq: JS-0090 + req.file.vibrant = vibrant,// skipcq: JS-0090 + req.file.sha1 = sha1// skipcq: JS-0090 )) // Remove the temp file if using S3 storage, otherwise rename the local file