diff --git a/src/Core/Services/Implementations/RsaLicensingService.cs b/src/Core/Services/Implementations/RsaLicensingService.cs index adc5dffcbd..b65417cf6b 100644 --- a/src/Core/Services/Implementations/RsaLicensingService.cs +++ b/src/Core/Services/Implementations/RsaLicensingService.cs @@ -77,7 +77,7 @@ namespace Bit.Core.Services if(_userCheckCache.ContainsKey(user.Id)) { var lastCheck = _userCheckCache[user.Id]; - if(lastCheck < now && now - lastCheck < TimeSpan.FromMinutes(1)) + if(lastCheck < now && now - lastCheck < TimeSpan.FromDays(1)) { return user.Premium; }