Fixed an issue with shortcuts pointing to a network share

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-09-07 15:08:32 -04:00
parent 90c609c159
commit 24d221709d
2 changed files with 17 additions and 2 deletions

View File

@@ -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)