diff --git a/app/src/main/java/io/xpipe/app/core/check/AppShellCheck.java b/app/src/main/java/io/xpipe/app/core/check/AppShellCheck.java index 001f9d2e7..b97661c4b 100644 --- a/app/src/main/java/io/xpipe/app/core/check/AppShellCheck.java +++ b/app/src/main/java/io/xpipe/app/core/check/AppShellCheck.java @@ -22,7 +22,7 @@ public class AppShellCheck { && OsType.getLocal() != OsType.MACOS; if (err.isPresent() && canFallback) { var msg = formatMessage(err.get().getMessage()); - ErrorEvent.fromThrowable(new IllegalStateException(msg)).handle(); + ErrorEvent.fromThrowable(new IllegalStateException(msg)).expected().handle(); enableFallback(); err = selfTestErrorCheck(); }