Skip to content

Commit

Permalink
Fix bug with string fields getnamo#311
Browse files Browse the repository at this point in the history
  • Loading branch information
staskjs authored Apr 21, 2022
1 parent f63670e commit 6eb5a94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/SocketIOClient/Private/SIOMessageConvert.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ TMap<FString, FString> USIOMessageConvert::JsonObjectToFStringMap(TSharedPtr<FJs
//If it's a string value, add it to the std map
if (Value->Type == EJson::String)
{
ParamMap[Pair.Key] = Value->AsString();
ParamMap.Add(Pair.Key, Value->AsString());
}
}
}
Expand Down

0 comments on commit 6eb5a94

Please sign in to comment.