Compare commits
2 Commits
6dace63cb0
...
bdf7e6bbae
Author | SHA1 | Date | |
---|---|---|---|
bdf7e6bbae | |||
7a116c6789 |
@ -4,7 +4,7 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
group = 'net.pixtaded'
|
group = 'net.pixtaded'
|
||||||
version = '1.0.1'
|
version = '1.0.2'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
@ -82,9 +82,7 @@ public class CrabClient implements Crab {
|
|||||||
private void communicate() throws IOException {
|
private void communicate() throws IOException {
|
||||||
Scanner scanner = new Scanner(System.in);
|
Scanner scanner = new Scanner(System.in);
|
||||||
String message;
|
String message;
|
||||||
|
|
||||||
while (true) {
|
while (true) {
|
||||||
System.out.print("\033[H\033[2J");
|
|
||||||
getLogs();
|
getLogs();
|
||||||
System.out.print("Enter a message (or type '/exit' to exit): ");
|
System.out.print("Enter a message (or type '/exit' to exit): ");
|
||||||
message = scanner.nextLine();
|
message = scanner.nextLine();
|
||||||
@ -114,6 +112,7 @@ public class CrabClient implements Crab {
|
|||||||
lastBufferLength = Integer.parseInt(new String(buffer).trim());
|
lastBufferLength = Integer.parseInt(new String(buffer).trim());
|
||||||
} case LOGS -> {
|
} case LOGS -> {
|
||||||
byte[] bytes = socket.getInputStream().readNBytes(lastBufferLength);
|
byte[] bytes = socket.getInputStream().readNBytes(lastBufferLength);
|
||||||
|
System.out.print("\033[H\033[2J");
|
||||||
System.out.print(Sanitizer.sanitizeString(new String(bytes, StandardCharsets.UTF_8), false));
|
System.out.print(Sanitizer.sanitizeString(new String(bytes, StandardCharsets.UTF_8), false));
|
||||||
} default -> {
|
} default -> {
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user