We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3c6ed7 commit ccc8616Copy full SHA for ccc8616
src/main/java/org/keepassxc/KindOfKeePassXC.java
@@ -35,8 +35,8 @@ public static Optional<KeePassXCType> determineType() {
35
return Optional.of(KeePassXCType.Snap);
36
}
37
38
- ///usr/bin/keepassxc
39
- if (processHandle.isPresent() && processHandle.get().info().commandLine().get().contains("bin")) {
+ ///usr/bin/keepassxc, gets started as "keepassxc"
+ if (processHandle.isPresent()) {
40
LOG.debug("Found running KeePassXC installed from repository");
41
return Optional.of(KeePassXCType.Repo);
42
0 commit comments