Skip to content

Commit 69434d7

Browse files
committed
Merge pull request #78 from icattlecoder/hotfix/add_enduser
Hotfix/add enduser
2 parents b91ce80 + 9d57160 commit 69434d7

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
## CHANGE LOG
22

3+
### v6.0.4
4+
5+
2013-09-02 issue [#78](https://github.com/qiniu/java-sdk/pull/78)
6+
7+
hot fix,增加EndUser字段至PutPolicy的JSON字符串中
8+
39
### v6.0.3
410

511
2013-08-5 issue [#76](https://github.com/qiniu/java-sdk/pull/76)

src/main/java/com/qiniu/api/rs/PutPolicy.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ private String marshal() throws JSONException {
5656
if (this.asyncOps != null && this.asyncOps.length() > 0) {
5757
stringer.key("asyncOps").value(this.asyncOps);
5858
}
59+
if (this.endUser != null && this.endUser.length() > 0) {
60+
stringer.key("endUser").value(this.endUser);
61+
}
5962
stringer.key("deadline").value(this.expires);
6063
stringer.endObject();
6164

0 commit comments

Comments
 (0)