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:
parent
96938cfda8
commit
db0267e3e0
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue