Merge branch 'bs_1.5.0.61' into SoftFever

This commit is contained in:
SoftFever 2023-03-15 22:29:41 +08:00
commit 25f2dd6ebb
2 changed files with 3 additions and 3 deletions

View file

@ -48,8 +48,8 @@ std::string http_headers::get_response()
std::string user_avatar;
try {
json user_j = json::parse(http_body);
if (user_j.contains("uid"))
user_id = std::to_string(user_j["uid"].get<int>());
if (user_j.contains("uidStr"))
user_id = user_j["uidStr"].get<std::string>();
if (user_j.contains("name"))
user_name = user_j["name"].get<std::string>();
if (user_j.contains("avatar"))

View file

@ -11,4 +11,4 @@ if(NOT DEFINED BBL_INTERNAL_TESTING)
set(BBL_INTERNAL_TESTING "1")
endif()
set(SoftFever_VERSION "1.5.0")
set(SLIC3R_VERSION "01.05.00.60")
set(SLIC3R_VERSION "01.05.00.61")