Skip to content

Commit

Permalink
10.10
Browse files Browse the repository at this point in the history
  • Loading branch information
crobibero committed Oct 1, 2024
1 parent 35fe6fa commit 93cf543
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Jellyfin.Plugin.Tvdb/ProviderIdsExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;

using MediaBrowser.Model.Entities;
Expand Down Expand Up @@ -117,6 +118,6 @@ public static bool HasProviderId(this IHasProviderIds? item, string name, out st
return result;
}

private static bool HasValue(string? value)
private static bool HasValue([NotNullWhen(true)] string? value)
=> !string.IsNullOrWhiteSpace(value);
}
2 changes: 1 addition & 1 deletion build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: "TheTVDB"
guid: "a677c0da-fac5-4cde-941a-7134223f14c8"
imageUrl: "https://repo.jellyfin.org/releases/plugin/images/jellyfin-plugin-tvdb.png"
version: 15
targetAbi: "10.9.9.0"
targetAbi: "10.10.0.0"
framework: "net8.0"
owner: "jellyfin"
overview: "Get TV metadata from TheTvdb"
Expand Down

0 comments on commit 93cf543

Please sign in to comment.