mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2024-11-09 22:28:38 +01:00
Description is an empty string if not set
This commit is contained in:
parent
86b178f55b
commit
cfa04f2df8
1 changed files with 4 additions and 1 deletions
|
@ -254,7 +254,10 @@ void generate_achievements(CurlEasy &easy)
|
|||
output_json[i]["hidden"] = std::to_string(item.value()["hidden"].get<int>());
|
||||
try
|
||||
{
|
||||
output_json[i]["description"] = item.value()["description"];
|
||||
if( !item.value()["description"].is_null() )
|
||||
output_json[i]["description"] = item.value()["description"];
|
||||
else
|
||||
output_json[i]["description"] = "";
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue