Skip to content

Commit

Permalink
Jellyfin port: update for 10.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
knackebrot committed Sep 20, 2020
1 parent 82f2dda commit bdb5fec
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion MediaBrowser.Plugins.VuPlus/Helpers/GeneralHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static ChannelType GetChannelType(string channelType)

public static class UtilsHelper
{
public static void DebugInformation(ILogger logger, string message)
public static void DebugInformation(ILogger<LiveTvService> logger, string message)
{
var config = Plugin.Instance.Configuration;
bool enableDebugLogging = config.EnableDebugLogging;
Expand Down
4 changes: 2 additions & 2 deletions MediaBrowser.Plugins.VuPlus/LiveTvService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class LiveTvService : ILiveTvService
{
private readonly IHttpClient _httpClient;
private readonly CultureInfo _usCulture = new CultureInfo("en-US");
private readonly ILogger _logger;
private readonly ILogger<LiveTvService> _logger;
private int _liveStreams;
private readonly Dictionary<int, int> _heartBeat = new Dictionary<int, int>();

Expand All @@ -45,7 +45,7 @@ public class LiveTvService : ILiveTvService

public DateTime LastRecordingChange = DateTime.MinValue;

public LiveTvService(IHttpClient httpClient, IJsonSerializer jsonSerializer, ILogger logger)
public LiveTvService(IHttpClient httpClient, IJsonSerializer jsonSerializer, ILogger<LiveTvService> logger)
{
_httpClient = httpClient;
_logger = logger;
Expand Down
10 changes: 5 additions & 5 deletions MediaBrowser.Plugins.VuPlus/MediaBrowser.Plugins.VuPlus.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;</TargetFrameworks>
<TargetFrameworks>netstandard2.1</TargetFrameworks>
<AssemblyVersion>3.1.8</AssemblyVersion>
<FileVersion>3.1.8</FileVersion>
</PropertyGroup>
Expand All @@ -15,10 +15,10 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Jellyfin.Common" Version="10.3.7" />
<PackageReference Include="Jellyfin.Naming" Version="10.3.7" />
<PackageReference Include="Jellyfin.Controller" Version="10.3.7" />
<PackageReference Include="Jellyfin.Model" Version="10.3.7" />
<PackageReference Include="Jellyfin.Common" Version="10.6.0" />
<PackageReference Include="Jellyfin.Naming" Version="10.6.0" />
<PackageReference Include="Jellyfin.Controller" Version="10.6.0" />
<PackageReference Include="Jellyfin.Model" Version="10.6.0" />
</ItemGroup>

</Project>

0 comments on commit bdb5fec

Please sign in to comment.