IdentityServer3.EntityFramework icon indicating copy to clipboard operation
IdentityServer3.EntityFramework copied to clipboard

fix ConsentStore null excretion when no existing consent.

Open jinweijie opened this issue 7 years ago • 2 comments

because the return type is Task<IdentityServer3.Core.Models.Consent>, so we should return Task.FromResult<IdentityServer3.Core.Models.Consent>(null) instead of null. Otherwise, null exception will be raised.

jinweijie avatar Jan 22 '17 06:01 jinweijie