IdentityManager / IdentityManager.AspNetIdentity

ASP.NET Identity support for Thinktecture IdentityManager
Apache License 2.0
60 stars 51 forks source link

Latest Commit might have a bug in it #11

Closed gwinnem closed 9 years ago

gwinnem commented 9 years ago

Line 63 in AspNetIdentityManagerService.cs else if (keyType == typeof(uint)) ConvertRoleSubjectToKey = subject => (TRoleKey)ParseUInt32(subject);

But this else if block is related to the TUserKey should it not be: else if (keyType == typeof(uint)) ConvertUserSubjectToKey = subject => (TUserKeyKey)ParseUInt32(subject);

brockallen commented 9 years ago

Ah, good catch. thanks. Fixed on dev.