10.8 support

This commit is contained in:
Cody Robibero 2021-11-06 14:21:30 -06:00
parent 709a3c3ae2
commit 9c2161e19f
2 changed files with 3 additions and 3 deletions

View File

@ -405,7 +405,7 @@ namespace Jellyfin.Plugin.Reports.Api
{
var activityLogQuery = new ActivityLogQuery
{
StartIndex = request.StartIndex,
Skip = request.StartIndex,
Limit = request.HasQueryLimit ? request.Limit : null
};

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<AssemblyVersion>12.0.0.0</AssemblyVersion>
<FileVersion>12.0.0.0</FileVersion>
<RootNamespace>Jellyfin.Plugin.Reports</RootNamespace>
@ -17,7 +17,7 @@
<ItemGroup>
<PackageReference Include="Jellyfin.Data" Version="10.*-*" />
<PackageReference Include="Jellyfin.Controller" Version="10.*-*" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.2.0" />
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
</Project>