mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed: (AnimeBytes) add delimiter to episode release
This commit is contained in:
@@ -321,9 +321,10 @@ namespace NzbDrone.Core.Indexers.Definitions
|
|||||||
|
|
||||||
if (episode != null)
|
if (episode != null)
|
||||||
{
|
{
|
||||||
releaseInfo = episode is > 0 and < 10
|
var episodeString = episode is > 0 and < 10
|
||||||
? "0" + episode
|
? "0" + episode
|
||||||
: episode.ToString();
|
: episode.ToString();
|
||||||
|
releaseInfo = $" - {episodeString}";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user