diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-01-22 11:41:34 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-01-22 11:41:34 -0500 |
| commit | b7e5e21c975cc4953764d48c1dacbcd4dc149de9 (patch) | |
| tree | 1bf66f65eb3a11b095b83c2d116fd70db919ba27 /MediaBrowser.Api/UserService.cs | |
| parent | 7bc370bdc72df5dac395b8fee805284b845ed911 (diff) | |
update task buttons
Diffstat (limited to 'MediaBrowser.Api/UserService.cs')
| -rw-r--r-- | MediaBrowser.Api/UserService.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/MediaBrowser.Api/UserService.cs b/MediaBrowser.Api/UserService.cs index 51a7584b8..37553e4a4 100644 --- a/MediaBrowser.Api/UserService.cs +++ b/MediaBrowser.Api/UserService.cs @@ -449,8 +449,7 @@ namespace MediaBrowser.Api { // We need to parse this manually because we told service stack not to with IRequiresRequestStream // https://code.google.com/p/servicestack/source/browse/trunk/Common/ServiceStack.Text/ServiceStack.Text/Controller/PathInfo.cs - var pathInfo = PathInfo.Parse(Request.PathInfo); - var id = new Guid(pathInfo.GetArgumentValue<string>(1)); + var id = new Guid(GetPathValue(1)); var dtoUser = request; |
