web_service: Fix -Wmissing-field-initializers

This commit is contained in:
FearlessTobi 2022-07-08 04:23:16 +02:00
parent 7fbd2916a1
commit ee5cb9c7b9

View File

@ -112,7 +112,7 @@ WebService::WebResult RoomJson::Update() {
if (room_id.empty()) {
LOG_ERROR(WebService, "Room must be registered to be updated");
return WebService::WebResult{WebService::WebResult::Code::LibError,
"Room is not registered"};
"Room is not registered", ""};
}
nlohmann::json json{{"players", room.members}};
return client.PostJson(fmt::format("/lobby/{}", room_id), json.dump(), false);