fix progress inaccuracy

This commit is contained in:
iou1name 2025-03-22 20:40:20 -04:00
parent 7fa0adbff9
commit d5c1a787f7

View File

@ -81,14 +81,14 @@ async def build_library(root_dir):
while True:
try:
track = mapping.next()
if track:
tracks.append(track)
tracks.append(track)
except StopIteration:
break
percent = round(len(tracks) / len(filepaths) * 100, 2)
if percent >= prev_percent + 2.5:
print(f"{percent}%")
prev_percent = percent
tracks = [t for t in tracks if t]
if not tracks:
print("No new tracks found!")
return