From 92a59eceee0393b19479616f7531e6e8dba2a371 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Tue, 28 Jul 2020 20:39:07 +0200 Subject: cache: fix BugExcerpt's timestamp not properly stored fix #426 --- cache/repo_cache.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'cache/repo_cache.go') diff --git a/cache/repo_cache.go b/cache/repo_cache.go index 7e605a6e..89772455 100644 --- a/cache/repo_cache.go +++ b/cache/repo_cache.go @@ -19,8 +19,7 @@ import ( // 1: original format // 2: added cache for identities with a reference in the bug cache -// 3: CreateUnixTime --> createUnixTime, EditUnixTime --> editUnixTime -const formatVersion = 3 +const formatVersion = 2 var _ repository.RepoCommon = &RepoCache{} -- cgit