mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 22:07:32 -04:00
Fixed: (AnimeBytes) add delimiter to episode release
This commit is contained in:
parent
6f122fb2e4
commit
c400575aac
1 changed files with 2 additions and 1 deletions
|
@ -321,9 +321,10 @@ namespace NzbDrone.Core.Indexers.Definitions
|
|||
|
||||
if (episode != null)
|
||||
{
|
||||
releaseInfo = episode is > 0 and < 10
|
||||
var episodeString = episode is > 0 and < 10
|
||||
? "0" + episode
|
||||
: episode.ToString();
|
||||
releaseInfo = $" - {episodeString}";
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue