diff options
| author | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-09-07 15:08:32 -0400 |
|---|---|---|
| committer | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-09-07 15:08:32 -0400 |
| commit | 24d221709dec35456dc2702d5ddb7cfa204bd8bd (patch) | |
| tree | 5fbad020efc1bc2154812128a32fd88afa50ffb3 /MediaBrowser.Controller/Kernel.cs | |
| parent | 90c609c159d7746352fa3481550b44fcd5090f6d (diff) | |
Fixed an issue with shortcuts pointing to a network share
Diffstat (limited to 'MediaBrowser.Controller/Kernel.cs')
| -rw-r--r-- | MediaBrowser.Controller/Kernel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Kernel.cs b/MediaBrowser.Controller/Kernel.cs index b45e3ab9a..ea7b92872 100644 --- a/MediaBrowser.Controller/Kernel.cs +++ b/MediaBrowser.Controller/Kernel.cs @@ -217,7 +217,7 @@ namespace MediaBrowser.Controller }
else
{
- result.Success = GetMD5(password).Equals(user.Password);
+ result.Success = GetMD5((password ?? string.Empty)).Equals(user.Password);
// Update LastActivityDate and LastLoginDate, then save
if (result.Success)
|
