aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Library/UserManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-02-11 22:54:31 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-02-11 22:54:31 -0500
commitea92065df0321039b4a6433e9f5d2a7269d720a6 (patch)
treef757d6ee2154e31e3ce10c286d175189146235af /MediaBrowser.Server.Implementations/Library/UserManager.cs
parent306c5041f032a539612522d9acdd59596b075719 (diff)
sync updates
Diffstat (limited to 'MediaBrowser.Server.Implementations/Library/UserManager.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Library/UserManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Library/UserManager.cs b/MediaBrowser.Server.Implementations/Library/UserManager.cs
index 88ba3b7bf..8858abc10 100644
--- a/MediaBrowser.Server.Implementations/Library/UserManager.cs
+++ b/MediaBrowser.Server.Implementations/Library/UserManager.cs
@@ -410,7 +410,7 @@ namespace MediaBrowser.Server.Implementations.Library
dto.HasPassword = !IsPasswordEmpty(offlinePasswordHash);
// Hash the pin with the device Id to create a unique result for this device
- dto.OfflinePassword = GetSha1String(offlinePasswordHash + deviceId);
+ dto.OfflinePassword = GetSha1String((offlinePasswordHash + deviceId).ToLower());
dto.ServerName = _appHost.FriendlyName;