We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 01b5fce + 977921c commit ed780ddCopy full SHA for ed780dd
1 file changed
src/lib/server/services/dns-verification.ts
@@ -40,7 +40,7 @@ export async function verifyDns(orgId: string): Promise<{
40
try {
41
const txtRecords = await resolve(record.domain, 'TXT');
42
const flat = txtRecords.flat();
43
- const found = flat.some((txt) => txt.includes(record.txtRecord));
+ const found = flat.some((txt) => txt === record.txtRecord);
44
45
if (found) {
46
await db
0 commit comments