From 28286425151eafa67333627f8cfc85b366767c78 Mon Sep 17 00:00:00 2001 From: les Date: Thu, 30 Jan 2020 15:33:12 +0100 Subject: [PATCH] ignore other fedi urls --- server/federation/helpers.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/server/federation/helpers.js b/server/federation/helpers.js index 16a9f4d1..08ef295c 100644 --- a/server/federation/helpers.js +++ b/server/federation/helpers.js @@ -18,6 +18,10 @@ const Helpers = { '/api/statusnet/version.json', '/api/gnusocial/version.json', '/api/statusnet/config.json', + '/status.php', + '/siteinfo.json', + '/friendika/json', + '/friendica/json', '/poco' ] if (urlToIgnore.includes(req.path)) { return res.status(404).send('Not Found') }