mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-19 22:20:33 +01:00
Fixed an issue with shortcuts pointing to a network share
This commit is contained in:
parent
90c609c159
commit
24d221709d
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user