aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Dto/UserDtoBuilder.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-05-09 18:43:11 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-05-09 18:43:11 -0400
commit35a7986b3f2c40e66bb7da6a9ae91b38cc763422 (patch)
treea81b31b24b2372ce2c8f23faedcf240f8bd7e700 /MediaBrowser.Controller/Dto/UserDtoBuilder.cs
parent2b2832076471f789d46faf938596c57a18601e1f (diff)
added model classes for remote control
Diffstat (limited to 'MediaBrowser.Controller/Dto/UserDtoBuilder.cs')
-rw-r--r--MediaBrowser.Controller/Dto/UserDtoBuilder.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Dto/UserDtoBuilder.cs b/MediaBrowser.Controller/Dto/UserDtoBuilder.cs
index ad90a392c..892bd5dd0 100644
--- a/MediaBrowser.Controller/Dto/UserDtoBuilder.cs
+++ b/MediaBrowser.Controller/Dto/UserDtoBuilder.cs
@@ -41,7 +41,7 @@ namespace MediaBrowser.Controller.Dto
var dto = new UserDto
{
- Id = user.Id.ToString(),
+ Id = user.Id.ToString("N"),
Name = user.Name,
HasPassword = !String.IsNullOrEmpty(user.Password),
LastActivityDate = user.LastActivityDate,