From 875d7ddb42e84e0d7f3f45b8afab1e729fe11c74 Mon Sep 17 00:00:00 2001 From: Renge Date: Wed, 17 Apr 2024 20:13:17 -0400 Subject: [PATCH] fix: add spf record for spf --- Project/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project/index.js b/Project/index.js index 4af7581..0f7b9e0 100644 --- a/Project/index.js +++ b/Project/index.js @@ -52,7 +52,7 @@ const spf = (req, res) => { query.close(); swipl.cleanup() swipl.initialise() - return res.status(200).send([...new Set(result)]) + return res.status(200).send({spf: spf, allowedIP: [...new Set(result)]}) } }) })