From eccad588f42b804523449362a1467a890b9ea000 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Fri, 25 Oct 2024 12:49:49 -0400 Subject: [PATCH] fix: one more fix --- src/controllers/activitypub/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/activitypub/index.js b/src/controllers/activitypub/index.js index 08160cc285..bda06afc94 100644 --- a/src/controllers/activitypub/index.js +++ b/src/controllers/activitypub/index.js @@ -49,7 +49,7 @@ Controller.fetch = async (req, res, next) => { helpers.redirect(res, url.href, false); } catch (e) { activitypub.helpers.log(`[activitypub/fetch] Invalid URL received: ${url}`); - return next(); + helpers.redirect(res, url.href, false); } };