We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b91ce80 + 9d57160 commit 69434d7Copy full SHA for 69434d7
CHANGELOG.md
@@ -1,5 +1,11 @@
1
## CHANGE LOG
2
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
9
### v6.0.3
10
11
2013-08-5 issue [#76](https://github.com/qiniu/java-sdk/pull/76)
src/main/java/com/qiniu/api/rs/PutPolicy.java
@@ -56,6 +56,9 @@ private String marshal() throws JSONException {
56
if (this.asyncOps != null && this.asyncOps.length() > 0) {
57
stringer.key("asyncOps").value(this.asyncOps);
58
}
59
+ if (this.endUser != null && this.endUser.length() > 0) {
60
+ stringer.key("endUser").value(this.endUser);
61
+ }
62
stringer.key("deadline").value(this.expires);
63
stringer.endObject();
64
0 commit comments