[unpackfs] Don't let ir-phase reduce total number of files

This commit is contained in:
Adriaan de Groot 2019-03-29 16:53:02 -04:00
parent fae0b8c2f8
commit 2a6bf50621

View File

@ -274,7 +274,8 @@ class UnpackOperation:
:param copied: :param copied:
""" """
entry.copied = copied entry.copied = copied
entry.total = total if total > entry.total:
entry.total = total
self.report_progress() self.report_progress()
try: try: