comment out delta if prevpath is bad

This commit is contained in:
ryanfkeepers 2022-12-22 11:52:28 -07:00
parent e413ca1742
commit f0c638e8b9

View File

@ -94,6 +94,8 @@ func filterContainersAndFillCollections(
if len(prevPathStr) > 0 {
if prevPath, err = pathFromPrevString(prevPathStr); err != nil {
logger.Ctx(ctx).Error(err)
// if the previous path is unusable, then the delta must be, too.
prevDelta = ""
}
}