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 b84073f commit 922ee1cCopy full SHA for 922ee1c
src/main/java/org/cryptomator/linux/keychain/KDEWalletKeychainAccess.java
@@ -28,9 +28,11 @@ public KDEWalletKeychainAccess() {
28
try {
29
conn = DBusConnection.getConnection(DBusConnection.DBusBusType.SESSION);
30
} catch (RuntimeException e) {
31
- LOG.warn("SESSION DBus not found.", e);
+ if (e.getMessage() == "Cannot Resolve Session Bus Address") {
32
+ LOG.warn("SESSION DBus not found.");
33
+ }
34
}
- if(conn == null){
35
+ if (conn == null) {
36
conn = DBusConnection.getConnection(DBusConnection.DBusBusType.SYSTEM);
37
38
wallet = new ConnectedWallet(conn);
0 commit comments