From 6d9fcd92f6b0ccf6ca0b31b09a6c5ec964576012 Mon Sep 17 00:00:00 2001 From: crschnick Date: Sat, 31 May 2025 07:41:43 +0000 Subject: [PATCH] Fixes --- app/src/main/java/io/xpipe/app/ext/ShellSession.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/main/java/io/xpipe/app/ext/ShellSession.java b/app/src/main/java/io/xpipe/app/ext/ShellSession.java index 683d66e80..986be47ab 100644 --- a/app/src/main/java/io/xpipe/app/ext/ShellSession.java +++ b/app/src/main/java/io/xpipe/app/ext/ShellSession.java @@ -71,6 +71,7 @@ public class ShellSession extends Session { @Override public boolean checkAlive() throws Exception { - return shellControl.command(CommandBuilder.of().add("echo", "xpipetest")).executeAndCheck(); + // Don't print it constantly + return shellControl.command(CommandBuilder.of().add("echo", "xpipetest")).sensitive().executeAndCheck(); } }