Fixed the emby connect issue

This commit is contained in:
tidusjar 2020-07-31 16:14:06 +01:00
commit bffa7d33d4
12 changed files with 2373 additions and 22 deletions

View file

@ -79,7 +79,7 @@ namespace Ombi.Core.Authentication
{
return await CheckPlexPasswordAsync(user, password);
}
if (user.UserType == UserType.EmbyUser)
if (user.UserType == UserType.EmbyUser || user.UserType == UserType.EmbyConnectUser)
{
return await CheckEmbyPasswordAsync(user, password);
}