Skip to content
Snippets Groups Projects
Commit 6a41c989 authored by Joe Donofry's avatar Joe Donofry
Browse files

Fix syntax error in previous commit

parent d444aa2c
No related branches found
No related tags found
No related merge requests found
......@@ -212,7 +212,7 @@ from_json(const json &obj, KeyVerificationStart &event)
event.transaction_id = obj.at("transaction_id").get<std::string>();
event.method = obj.at("method").get<VerificationMethods>();
if (obj.count("next_method") != 0) {
event.next_method = obj.at("next_method").get<std::vector<std::string>>;
event.next_method = obj.at("next_method").get<std::string>();
}
event.key_agreement_protocols =
obj.at("key_agreement_protocols").get<std::vector<std::string>>();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment