From cc0e9dff4fc26a5b52823126c5594e03d0301177 Mon Sep 17 00:00:00 2001
From: Nicolas Werner <nicolas.werner@hotmail.de>
Date: Sat, 30 Oct 2021 00:25:35 +0200
Subject: [PATCH] Fix parser mistake of key signature upload response

---
 lib/structs/responses/crypto.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/structs/responses/crypto.cpp b/lib/structs/responses/crypto.cpp
index 9c14db0b0..135854799 100644
--- a/lib/structs/responses/crypto.cpp
+++ b/lib/structs/responses/crypto.cpp
@@ -43,8 +43,8 @@ to_json(nlohmann::json &obj, const QueryKeys &response)
 void
 from_json(const nlohmann::json &obj, KeySignaturesUpload &response)
 {
-    if (!obj.empty())
-        response.errors = obj.get<decltype(response.errors)>();
+    if (obj.contains("failures"))
+        response.errors = obj.at("failures").get<decltype(response.errors)>();
 }
 
 void
-- 
GitLab