diff --git a/server/federation/follows.js b/server/federation/follows.js index 68ef4e46..c60aa761 100644 --- a/server/federation/follows.js +++ b/server/federation/follows.js @@ -10,7 +10,7 @@ module.exports = { if (typeof body.object !== 'string') { return } const username = body.object.replace(`${config.baseurl}/federation/u/`, '') if (username !== req.settings.instance_name) { - log.warn(`Following the wrong user: ${username} instead of ${req.settings.instance_name}`) + log.warn(`Following the wrong user: ${username} instead of ${req.settings.instance_name} (could be a wrong config.baseurl)`) return res.status(404).send('User not found') }