From 4bbdd9315c78bfaba404821cee466b5cccf8f2d6 Mon Sep 17 00:00:00 2001 From: crschnick Date: Fri, 22 Mar 2024 02:37:11 +0000 Subject: [PATCH] Fix skip connection validation still looking for child connections --- .../main/java/io/xpipe/app/comp/store/StoreCreationComp.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/io/xpipe/app/comp/store/StoreCreationComp.java b/app/src/main/java/io/xpipe/app/comp/store/StoreCreationComp.java index e656db08e..54f65f82e 100644 --- a/app/src/main/java/io/xpipe/app/comp/store/StoreCreationComp.java +++ b/app/src/main/java/io/xpipe/app/comp/store/StoreCreationComp.java @@ -174,7 +174,7 @@ public class StoreCreationComp extends DialogComp { (e, validated) -> { try { DataStorage.get().addStoreEntryIfNotPresent(e); - if (e.getProvider().shouldHaveChildren() + if (validated && e.getProvider().shouldHaveChildren() && AppPrefs.get() .openConnectionSearchWindowOnConnectionCreation() .get()) {