Merge branch 'master' into master

This commit is contained in:
DarkFighterLuke
2025-12-02 14:37:51 +01:00
committed by GitHub
8 changed files with 221 additions and 17 deletions
@@ -170,7 +170,15 @@ namespace Jellyfin.Plugin.TubeArchivistMetadata.Tasks
}
processedVideosCount += currentPlaylistVideos;
progress.Report(processedVideosCount * 100 / totalVideosCount);
if (totalVideosCount == 0)
{
progress.Report(100);
}
else
{
progress.Report(processedVideosCount * 100 / totalVideosCount);
}
}
}
}