mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-23 14:41:08 +00:00
Small layout improvement
This commit is contained in:
parent
7e2c09cb7d
commit
7677b34c4e
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ public class Whois {
|
|||
byte[] request = (domain + "\r\n").getBytes(StandardCharsets.ISO_8859_1);
|
||||
socket.getOutputStream().write(request);
|
||||
String response = Helper.readStream(socket.getInputStream(), StandardCharsets.ISO_8859_1);
|
||||
return host + ":" + port + "\n" + response;
|
||||
return host + ":" + port + "\n\n" + response;
|
||||
} finally {
|
||||
socket.close();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue