Skip to content

Commit

Permalink
force cache clear
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark-H committed May 13, 2024
1 parent 80ba1a4 commit b80c367
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Views/Base.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ protected function getLang(string $language): array
private function getOpenCollectiveInfo(): array
{
$cache = CacheService::getInstance();
$cacheKey = 'opencollective';
$cacheKey = 'opencollective_fc';
$info = $cache->get($cacheKey);
if (!is_array($info)) {
$data = @file_get_contents('https://opencollective.com/modx.json');
Expand All @@ -131,7 +131,7 @@ private function getOpenCollectiveInfo(): array
private function getOpenCollectiveMembers(): array
{
$cache = CacheService::getInstance();
$cacheKey = 'opencollective_members';
$cacheKey = 'opencollective_members_fc';
$info = $cache->get($cacheKey);
if (!is_array($info)) {
$data = @file_get_contents('https://opencollective.com/modx/members.json?limit=50&isActive=1');
Expand Down

0 comments on commit b80c367

Please sign in to comment.