Fixed tracking import errors

This commit is contained in:
Philipp Wolfer 2023-11-26 12:44:48 +01:00
parent 0045a5096e
commit 3ccbb20a9e
No known key found for this signature in database
GPG key ID: 8FDF744D4919943B
2 changed files with 4 additions and 0 deletions

View file

@ -181,6 +181,7 @@ func (i *ImportResult) Update(from ImportResult) {
i.TotalCount = from.TotalCount
i.ImportCount = from.ImportCount
i.UpdateTimestamp(from.LastTimestamp)
i.ImportErrors = append(i.ImportErrors, from.ImportErrors...)
}
type Progress struct {