mirror of
https://github.com/streetwriters/notesnook-sync-server.git
synced 2026-02-12 11:12:44 +00:00
identity: keep all grants for 12 hours before cleaning up
This commit is contained in:
@@ -67,7 +67,7 @@ namespace Streetwriters.Identity.Services
|
||||
|
||||
public Task RemoveExpired()
|
||||
{
|
||||
return Remove(x => x.Expiration < DateTime.UtcNow.AddHours(12));
|
||||
return Remove(x => x.Expiration.HasValue && x.Expiration.Value.AddHours(12) < DateTime.UtcNow);
|
||||
}
|
||||
|
||||
public Task InsertOrUpdate(Expression<Func<PersistedGrant, bool>> filter, PersistedGrant entity)
|
||||
|
||||
Reference in New Issue
Block a user