diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2024-04-13 01:49:09 +0300 |
---|---|---|
committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2024-04-13 02:07:58 +0300 |
commit | a6107bceec79b15ebf4cdbdc6a5e32d018b7eb23 (patch) | |
tree | 82a92063584d3bcf69c797b660ed77ace520a004 /indra/newview | |
parent | 4053bae85dabf7840c9c2bd2444c0d034d697973 (diff) |
viewer#1081 Add expected price to upload's body
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llviewerassetupload.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewerassetupload.cpp b/indra/newview/llviewerassetupload.cpp index e2e321af0d..882e08935c 100644 --- a/indra/newview/llviewerassetupload.cpp +++ b/indra/newview/llviewerassetupload.cpp @@ -156,9 +156,9 @@ LLSD LLResourceUploadInfo::generatePostBody() body["next_owner_mask"] = LLSD::Integer(mNextOwnerPerms); body["group_mask"] = LLSD::Integer(mGroupPerms); body["everyone_mask"] = LLSD::Integer(mEveryonePerms); + body["expected_upload_cost"] = mExpectedUploadCost; return body; - } void LLResourceUploadInfo::logPreparedUpload() |