fix: bug where newly create cids were not responding via webfinger, 404 on webfinger errors, not 400

This commit is contained in:
Julian Lam
2025-01-15 15:14:15 -05:00
parent 487e7be52c
commit c17809e450
2 changed files with 2 additions and 1 deletions

View File

@@ -40,7 +40,7 @@ Controller.webfinger = async (req, res) => {
res.status(200).json(response);
} catch (e) {
res.sendStatus(400);
res.sendStatus(404);
}
};