We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c3e6f6 commit 89e7db7Copy full SHA for 89e7db7
Qiniu/RS/Entry.cs
@@ -40,7 +40,7 @@ public class Entry : CallRet
40
public Entry (CallRet ret)
41
: base(ret)
42
{
43
- if (OK && string.IsNullOrEmpty (Response)) {
+ if (OK && !string.IsNullOrEmpty (Response)) {
44
try {
45
Unmarshal (Response);
46
} catch (Exception e) {
Qiniu/RS/RSPath.cs
@@ -20,7 +20,7 @@ public string Bucket {
20
/// 文件key
21
/// </summary>
22
public string Key {
23
- get { return System.Web.HttpUtility.UrlEncode (key); }
+ get { return key; }
24
}
25
26
private string uri;
bin/Qiniu.dll
3 KB
0 commit comments