Skip to content

Commit 6258fca

Browse files
committed
fix urlencode bug
1 parent f7154e5 commit 6258fca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Qiniu/RS/GetPolicy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public static string MakeRequest (string baseUrl, UInt32 expires = 3600, Mac mac
2929

3030
public static string MakeBaseUrl (string domain, string key)
3131
{
32-
return string.Format ("http://{0}/{1}", domain, System.Web.HttpUtility.UrlEncode (key));
32+
return string.Format ("http://{0}/{1}", domain, key);
3333
}
3434
}
3535
}

0 commit comments

Comments
 (0)