Compare commits

..

No commits in common. "0844cebd88169ed03290aae5ef3994b9fc0cbd68" and "45844cafecc09ea319469906f2fe3b11a3aecfaa" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View file

@ -162,7 +162,7 @@ namespace Jellyfin.Plugin.SmartPlaylist.ScheduledTasks {
await ClearPlaylist(playlist);
await _playlistManager.AddItemToPlaylistAsync(playlist.Id, insertItems, playlistLink.UserId);
i += 1;
progress.Report(100 * ((double)i)/dto.Playlists.Count());
progress.Report(((double)i)/dto.Playlists.Count());
}
}
}

View file

@ -9,8 +9,8 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Jellyfin.Controller" Version="10.10.3" />
<PackageReference Include="Jellyfin.Model" Version="10.10.3" />
<PackageReference Include="Jellyfin.Controller" Version="10.10.2" />
<PackageReference Include="Jellyfin.Model" Version="10.10.2" />
<PackageReference Include="YamlDotNet" Version="16.2.0" />
</ItemGroup>