Skip to content

Commit

Permalink
10.9
Browse files Browse the repository at this point in the history
  • Loading branch information
crobibero committed Mar 26, 2024
1 parent ba0bc5f commit 2d01c1e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Jellyfin.Plugin.TvMaze/Jellyfin.Plugin.TvMaze.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Nullable>enable</Nullable>
Expand Down
3 changes: 2 additions & 1 deletion Jellyfin.Plugin.TvMaze/Providers/TvMazeSeriesProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using Jellyfin.Data.Enums;
using MediaBrowser.Common.Net;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.TV;
Expand Down Expand Up @@ -196,7 +197,7 @@ public async Task<MetadataResult<Series>> GetMetadata(SeriesInfo info, Cancellat
personInfo.SetProviderId(TvMazePlugin.ProviderId, castMember.Person.Id.ToString(CultureInfo.InvariantCulture));
personInfo.Name = castMember.Person.Name;
personInfo.Role = castMember.Character.Name;
personInfo.Type = PersonType.Actor;
personInfo.Type = PersonKind.Actor;
personInfo.ImageUrl = castMember.Person.Image?.Original
?? castMember.Person.Image?.Medium;

Expand Down
4 changes: 2 additions & 2 deletions build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: "TVmaze"
guid: "A4A488D0-17A3-4919-8D82-7F3DE4F6B209"
imageUrl: "https://repo.jellyfin.org/releases/plugin/images/jellyfin-plugin-tvmaze.png"
version: "11"
targetAbi: "10.8.0.0"
framework: "net6.0"
targetAbi: "10.9.0.0"
framework: "net8.0"
owner: "jellyfin"
overview: "Get TV metadata from TVmaze"
description: >
Expand Down

0 comments on commit 2d01c1e

Please sign in to comment.