From 5a7fadd36ef37a6d1ec644d0f310bc7d127a7226 Mon Sep 17 00:00:00 2001 From: Josh Moore Date: Tue, 5 Oct 2021 11:50:46 -0600 Subject: [PATCH] Switched to single quotations --- routers/upload.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routers/upload.js b/routers/upload.js index d334f3a..35bedd3 100644 --- a/routers/upload.js +++ b/routers/upload.js @@ -48,7 +48,7 @@ router.post('/', (req, res, next) => { req.file.timestamp = DateTime.now().toMillis(); // Save the timezone offset - req.file.timeoffset = req.headers['x-ass-timeoffset'] || "UTC+0"; + req.file.timeoffset = req.headers['x-ass-timeoffset'] || 'UTC+0'; // Keep track of the token that uploaded the resource req.file.token = req.token;