1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-31 20:25:38 +00:00

Concat TXT record

This commit is contained in:
M66B 2022-04-05 12:41:25 +02:00
parent 96938cfda8
commit db0267e3e0

View file

@ -200,7 +200,7 @@ public class DnsHelper {
TXTRecord txt = (TXTRecord) record;
for (Object content : txt.getStrings())
if (result.size() > 0)
result.get(0).name += ' ' + content.toString();
result.get(0).name += content.toString();
else
result.add(new DnsRecord(content.toString(), 0));
} else