From 127ff2d361b1371a9603bd9128ef5cdf8cfaf77e Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 16 Aug 2017 23:45:40 -0400 Subject: [PATCH] back to 1 day --- src/Core/Services/Implementations/RsaLicensingService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }