From baf903c51d58ff434a431ddadb71a008e05d0238 Mon Sep 17 00:00:00 2001 From: Russell2259 Date: Thu, 25 Jan 2024 18:53:20 +0000 Subject: [PATCH] fix 3kh0 games --- server/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/index.js b/server/index.js index 5c31a9a..e326d66 100644 --- a/server/index.js +++ b/server/index.js @@ -31,7 +31,7 @@ api(app); app.get('/cdn/3kh0/*', cors({ origin: false }), async (req, res, next) => { - let reqTarget = `https://codeberg.org/3kh0/3kh0-assets/raw/branch/main/${req.path.replace('/cdn/3kh0/', '')}`; + let reqTarget = `https://codeberg.org/derpman/echo/raw/branch/main/${req.path.replace('/cdn/3kh0/', '')}`; const asset = await fetch(reqTarget); if (asset.status == 200) {