This commit is contained in:
2025-08-29 12:51:19 +02:00
parent 6edbfef12a
commit 6daffaeb94
2 changed files with 3 additions and 1 deletions

View File

@@ -27,6 +27,7 @@ fn (mut repo GitRepo) cache_get() ! {
if repo_json.len > 0 {
mut cached := json.decode(GitRepo, repo_json)!
cached.gs = repo.gs
cached.config.remote_check_period = 3600 * 24 * 7
repo = cached
}
}