Skip to content

Commit

Permalink
fix "publish" button in save browser
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob1 committed Aug 25, 2018
1 parent bbef295 commit 3707ecd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/Client.cpp
Expand Up @@ -1566,7 +1566,7 @@ RequestStatus Client::PublishSave(int saveID)

const char *const postNames[] = { "ActionPublish", NULL };
const char *const postDatas[] = { "" };
size_t postLengths[] = { 0 };
size_t postLengths[] = { 1 };
data = http_multipart_post(url.c_str(), postNames, postDatas, postLengths, userID.c_str(), NULL, authUser.SessionID.c_str(), &dataStatus, NULL); }
else
{
Expand Down

0 comments on commit 3707ecd

Please sign in to comment.