From 4f4c35f7e1e24d54cd6226bb64a81ad0259cc4eb Mon Sep 17 00:00:00 2001 From: tycrek Date: Sun, 8 Aug 2021 20:46:03 -0700 Subject: [PATCH] Fixed duplicate author (closes #45) --- routers/resource.js | 1 - 1 file changed, 1 deletion(-) diff --git a/routers/resource.js b/routers/resource.js index b35ebb3..e2caebb 100644 --- a/routers/resource.js +++ b/routers/resource.js @@ -30,7 +30,6 @@ router.get('/', (req, res, next) => data.get(req.ass.resourceId).then((fileData) const og = fileData.opengraph, ogs = ['']; og.title && (ogs.push(``)); // skipcq: JS-0093 og.description && (ogs.push(``)); // skipcq: JS-0093 - og.author && (ogs.push(``)); // skipcq: JS-0093 og.color && (ogs.push(``)); // skipcq: JS-0093 !fileData.is.video && (ogs.push(``)); // skipcq: JS-0093