Skip to content

Commit

Permalink
fix: fixed linting
Browse files Browse the repository at this point in the history
  • Loading branch information
titanism committed Apr 25, 2024
1 parent 96be52a commit 6baa5d1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/models/domains.js
Original file line number Diff line number Diff line change
Expand Up @@ -1593,7 +1593,9 @@ async function getVerificationResults(domain, resolver, purgeCache = false) {
const results = await resolver.resolveMx(domain.name, {
purgeCache: true
});
const exchanges = results.map((result) => result.exchange.toLowerCase());
const exchanges = results.map((result) =>
result.exchange.toLowerCase()
);
const hasOtherExchanges = exchanges.some(
(exchange) => !config.exchanges.includes(exchange)
);
Expand Down

0 comments on commit 6baa5d1

Please sign in to comment.