Skip to content

Commit

Permalink
Fix movie remote id ProviderName (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
scampower3 authored Aug 5, 2024
1 parent f11426d commit dde69e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ namespace Jellyfin.Plugin.Tvdb.Providers.ExternalId
public class TvdbMovieExternalId : IExternalId
{
/// <inheritdoc />
public string ProviderName => TvdbPlugin.ProviderId;
public string ProviderName => TvdbPlugin.ProviderName + " Numerical";

/// <inheritdoc />
public string Key => TvdbPlugin.ProviderName;
public string Key => TvdbPlugin.ProviderId;

/// <inheritdoc />
public ExternalIdMediaType? Type => ExternalIdMediaType.Movie;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Jellyfin.Plugin.Tvdb.Providers.ExternalId
public class TvdbMovieSlugExternalId : IExternalId
{
/// <inheritdoc />
public string ProviderName => TvdbPlugin.ProviderId;
public string ProviderName => TvdbPlugin.ProviderName;

/// <inheritdoc />
public string Key => TvdbPlugin.SlugProviderId;
Expand Down

0 comments on commit dde69e8

Please sign in to comment.