Merge branch 'dev-v7' into temp8

# Conflicts:
#	src/Umbraco.Web/PropertyEditors/MultiUrlPickerPropertyEditor.cs
This commit is contained in:
Sebastiaan Janssen
2019-02-14 18:14:46 +01:00

View File

@@ -96,6 +96,11 @@ namespace Umbraco.Web.Security
await EnsureValidSessionId(context);
if (context?.Identity == null)
{
context?.OwinContext.Authentication.SignOut(context.Options.AuthenticationType);
return;
}
await base.ValidateIdentity(context);
}