mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2024-11-23 20:38:07 +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>());
|
output_json[i]["hidden"] = std::to_string(item.value()["hidden"].get<int>());
|
||||||
try
|
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 (...)
|
catch (...)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue