diff --git a/external/3rd/library/webAPI/webAPI.cpp b/external/3rd/library/webAPI/webAPI.cpp index cd99d9b3..7a2a873c 100644 --- a/external/3rd/library/webAPI/webAPI.cpp +++ b/external/3rd/library/webAPI/webAPI.cpp @@ -55,7 +55,7 @@ std::string webAPI::getString(const std::string &slot) { return std::string(""); } -std::vector getStringVector(const std::string &slot) { +std::vector webAPI::getStringVector(const std::string &slot) { if (!this->responseData.empty() && !slot.empty() && responseData.count(slot) && !this->responseData[slot].is_null()) { return this->responseData[slot].get>(); }