Fix our rel cache key

This commit is contained in:
Deon George 2023-03-03 16:00:36 +11:00
parent 5b1ce7a31a
commit 253adb12b8
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ class VersionController extends Controller
break;
case 'rel':
$current = Cache::remember('dev',self::CACHE_TIME,function() {
$current = Cache::remember('rel',self::CACHE_TIME,function() {
$client = new Client;
$url = sprintf('%s/projects/%d/repository/tags',self::GL_URL,self::GL_PROJECT);