HappyRoot
HappyRoot
 The issue is that if multiple requests to update claims are made, the old ones are not removed, and the userId is set to null, leaving behind 'garbage' records...
@simpleidserver Awesome, that was fast! 🚀 Thanks for the quick fix!
The same problem was found in ResetController. ``` // 4. Send the OTP code. var url = Url.Action("Confirm", "Reset", new { area = Constants.AreaPwd }); var issuer = Request.GetAbsoluteUriWithVirtualPath(); .......
On our side, we implemented the following solution (overrode the UserTransformer, specifically the Transform method) - it might be a good idea to make it virtual :) I can create...
Issue identified: In TemplateStore, the ITemplateStore (DbContext) fails to track changes because the modified field is a JSON string. This causes CSS changes to reset on page reload. Fix: Need...
> Hello [@HappyRoot](https://github.com/HappyRoot) 😊 > > While working on ticket [#890](https://github.com/simpleidserver/SimpleIdServer/issues/890), we also discovered this issue. It has already been fixed in the release/v6.0.3 branch. The PwdAuthWorkflowLayout file was updated...
> Hello [@HappyRoot](https://github.com/HappyRoot) , > > Indeed, the issue still exists in release 6.0.3. I’ve made the following modifications in the 6.0.4 branch to fix it: > > * Added...