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

Diff for: CHANGELOG.md

+6
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)

Diff for: src/main/java/com/qiniu/api/rs/PutPolicy.java

+3
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)