mirror of
https://github.com/octoleo/restic.git
synced 2024-11-22 21:05:10 +00:00
Bugfix: packSizeFromList should save size from List()
This commit is contained in:
parent
058b102db0
commit
83c8a9b058
@ -96,7 +96,7 @@ func rebuildIndex(opts RebuildIndexOptions, gopts GlobalOptions, repo *repositor
|
|||||||
size, ok := packSizeFromIndex[id]
|
size, ok := packSizeFromIndex[id]
|
||||||
if !ok || size != packSize {
|
if !ok || size != packSize {
|
||||||
// Pack was not referenced in index or size does not match
|
// Pack was not referenced in index or size does not match
|
||||||
packSizeFromList[id] = size
|
packSizeFromList[id] = packSize
|
||||||
removePacks.Insert(id)
|
removePacks.Insert(id)
|
||||||
}
|
}
|
||||||
totalPacks++
|
totalPacks++
|
||||||
|
Loading…
Reference in New Issue
Block a user