Skip to content

Commit ac48a11

Browse files
author
Martin Noreke
committed
Fix for authentication issues against a non-standard workspace.
1 parent 1950804 commit ac48a11

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Rally.RestApi/RallyRestApi.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1197,7 +1197,7 @@ private Uri GetSecuredUri(Uri uri)
11971197
}
11981198
else
11991199
{
1200-
builder.Query += "&" + csrfToken;
1200+
builder.Query = builder.Query.Substring(1) + "&" + csrfToken;
12011201
}
12021202

12031203
return builder.Uri;

0 commit comments

Comments
 (0)