1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-03-04 13:10:03 -05:00

Fixed: Plexmatch special episode numbers

Closes #8270
This commit is contained in:
Stevie Robinson
2025-12-22 21:25:43 +01:00
committed by Mark McDowall
parent cbd7df2c91
commit 028d2414e7

View File

@@ -73,7 +73,7 @@ namespace NzbDrone.Core.Extras.Metadata.Consumers.Plex
if (episodeFile.SeasonNumber == 0)
{
episodeFormat = $"SP{episodesInFile.First():00}";
episodeFormat = $"SP{episodesInFile.First().EpisodeNumber:00}";
}
content.AppendLine($"Episode: {episodeFormat}: {episodeFile.RelativePath}");