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.
1 parent 5b2f4c3 commit b4ffc61Copy full SHA for b4ffc61
dnsconfig.js
@@ -139,10 +139,10 @@ for (var subdomain in domains) {
139
if (data.services.discord) {
140
if (Array.isArray(data.services.discord)) {
141
for (var txt in data.services.discord) {
142
- records.push(TXT(subdomainName, "\"" + data.services.discord[txt] + "\""));
+ records.push(TXT("_discord." + subdomainName, "\"" + data.services.discord[txt] + "\""));
143
}
144
} else {
145
- records.push(TXT(subdomainName, "\"" + data.services.discord + "\""));
+ records.push(TXT("_discord." + subdomainName, "\"" + data.services.discord + "\""));
146
147
148
0 commit comments