Skip to content

Commit 331d2d9

Browse files
committed
Fix error key
1 parent 1972726 commit 331d2d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/keepassxc/Connection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public JSONObject call() throws Exception {
115115
log.trace("KeePassXC send an empty response: {}", response);
116116
continue;
117117
}
118-
if (!response.has("success")) break;
118+
if (response.has("error")) break;
119119
if (response.has("action") && response.getString("action").equals(action)) break;
120120
log.trace("Response added to queue: {}", response);
121121
}

0 commit comments

Comments
 (0)