From 2248123b61ccd52a4afe633961a286cadad8d59b Mon Sep 17 00:00:00 2001 From: "Jonny_Bro (Nikita)" <48434875+JonnyBro@users.noreply.github.com> Date: Mon, 24 Feb 2025 19:00:56 +0500 Subject: [PATCH] feat: support default game maps --- routes/api.js | 5 +++-- views/upload.ejs | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/routes/api.js b/routes/api.js index ab42d2a..7b12e14 100644 --- a/routes/api.js +++ b/routes/api.js @@ -151,8 +151,9 @@ router.post("/upload_site", isUser, async (req, res) => { fs.writeFileSync(file, course); - const mapid = fields.link.match(/id=(\d+)/)[1]; - const mapImage = await openGraphScraper({ url: `https://steamcommunity.com/sharedfiles/filedetails/?id=${mapid}` }).then(data => data.result.ogImage[0].url); + const matched = fields.link.match(/id=(\d+)/); + const mapid = matched ? matched[1] : null; + const mapImage = mapid ? await openGraphScraper({ url: `https://steamcommunity.com/sharedfiles/filedetails/?id=${mapid}` }).then(data => data.result.ogImage[0].url) : ""; await db.push("/courses", { [code]: { diff --git a/views/upload.ejs b/views/upload.ejs index a49d6bc..23fbb64 100644 --- a/views/upload.ejs +++ b/views/upload.ejs @@ -43,8 +43,8 @@
- - + +