Skip to content

Commit

Permalink
fix: fix double namespacing on series
Browse files Browse the repository at this point in the history
  • Loading branch information
revam committed Dec 8, 2024
1 parent 71e7dc2 commit 131b78c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Shokofin/Providers/SeriesProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public async Task<MetadataResult<Series>> GetMetadata(SeriesInfo info, Cancellat
public static void AddProviderIds(IHasProviderIds item, string internalId, string? seriesId = null, string? groupId = null, string? anidbId = null, string? tmdbId = null, string? tvdbId = null) {
var config = Plugin.Instance.Configuration;

item.SetProviderId(ShokoInternalId.Name, ShokoInternalId.Namespace + internalId);
item.SetProviderId(ShokoInternalId.Name, internalId);
if (!string.IsNullOrEmpty(seriesId))
item.SetProviderId(ShokoSeriesId.Name, seriesId);
if (!string.IsNullOrEmpty(groupId))
Expand Down

0 comments on commit 131b78c

Please sign in to comment.