Skip to content

Commit 59ef4a0

Browse files
committed
[locallist] Fix local list message deserialization
1 parent 132f6f5 commit 59ef4a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/messages/SendLocalList.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ bool SendLocalListReqConverter::fromJson(const rapidjson::Value& json,
4646
{
4747
bool ret = true;
4848
extract(json, "listVersion", data.listVersion);
49-
if (json.HasMember(""))
49+
if (json.HasMember("localAuthorizationList"))
5050
{
5151
AuthorizationDataConverter authorization_data_converter;
5252
std::vector<AuthorizationData>& local_authorization_list = data.localAuthorizationList;

0 commit comments

Comments
 (0)