diff options
author | Michael Muré <batolettre@gmail.com> | 2020-07-28 20:39:07 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2020-07-28 20:39:07 +0200 |
commit | 92a59eceee0393b19479616f7531e6e8dba2a371 (patch) | |
tree | 0448c2a69119939062c528137b7485eb15c7220b /cache/repo_cache.go | |
parent | 51c887ff9dd4f2a5f65d2d3de57f8a7729b1010d (diff) | |
download | git-bug-92a59eceee0393b19479616f7531e6e8dba2a371.tar.gz |
cache: fix BugExcerpt's timestamp not properly stored
fix #426
Diffstat (limited to 'cache/repo_cache.go')
-rw-r--r-- | cache/repo_cache.go | 3 |
1 files changed, 1 insertions, 2 deletions
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{} |