Skip to content

Commit

Permalink
Fixed issue aws#36
Browse files Browse the repository at this point in the history
Fixed issue aws#36: aws#36

The parameter should be "upload-id-marker", not "upload-idmarker".
  • Loading branch information
jasoncwik committed Sep 9, 2013
1 parent d1bd90b commit 36f831a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AWSSDK/Amazon.S3/AmazonS3Client.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5349,7 +5349,7 @@ private void ConvertListMultipartUploads(ListMultipartUploadsRequest request)
}
if (request.IsSetUploadIdMarker())
{
sb.Append(String.Concat("upload-idmarker=", AmazonS3Util.UrlEncode(request.UploadIdMarker, false), "&"));
sb.Append(String.Concat("upload-id-marker=", AmazonS3Util.UrlEncode(request.UploadIdMarker, false), "&"));
}
if (request.IsSetPrefix())
{
Expand Down

0 comments on commit 36f831a

Please sign in to comment.