From 0e982fcf9e41477c5ebe583de9e3671c72c101ed Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Fri, 25 Oct 2024 12:37:45 -0400 Subject: [PATCH] fix: debug return not restored back --- src/controllers/activitypub/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/controllers/activitypub/index.js b/src/controllers/activitypub/index.js index 7077e88ad6..08160cc285 100644 --- a/src/controllers/activitypub/index.js +++ b/src/controllers/activitypub/index.js @@ -42,8 +42,7 @@ Controller.fetch = async (req, res, next) => { } default: - return next(); - // return helpers.redirect(res, result); + return helpers.redirect(res, url.href, false); } }