fix off by one in filesystem rescan progress

pull/583/head
Simon 7 months ago
parent 285e2042ae
commit 45f4ccfd93
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4

@ -83,7 +83,7 @@ class Scanner:
if self.task:
self.task.send_progress(
message_lines=[
f"Index missing video {youtube_id}, {idx}/{total}"
f"Index missing video {youtube_id}, {idx + 1}/{total}"
],
progress=(idx + 1) / total,
)

Loading…
Cancel
Save