diff --git a/VRCX-API/Services/GithubPeriodicService.cs b/VRCX-API/Services/GithubPeriodicService.cs index df77e4d..0a5ce18 100644 --- a/VRCX-API/Services/GithubPeriodicService.cs +++ b/VRCX-API/Services/GithubPeriodicService.cs @@ -25,6 +25,7 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken) if (DateTime.Now - _lastRefresh > TimeSpan.FromSeconds(120)) { await _githubCacheService.RefreshAsync(); + _lastRefresh = DateTime.Now; } } catch (Exception ex)