Merge pull request #1305 from bugfixin/passwordless-form-encoded

Fix passwordless authentication with non-json content-types
pull/1332/head
Joshua M. Boniface 6 years ago committed by GitHub
commit 4e0be95368
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -71,7 +71,7 @@ namespace Emby.Server.Implementations.Services
string propertyName = pair.Key;
string propertyTextValue = pair.Value;
if (string.IsNullOrEmpty(propertyTextValue)
if (propertyTextValue == null
|| !propertySetterMap.TryGetValue(propertyName, out propertySerializerEntry)
|| propertySerializerEntry.PropertySetFn == null)
{

Loading…
Cancel
Save