mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-04-23 13:57:06 -04:00
Fixed: Adding series with unknown IMDB ID and series folder includes IMDB ID
This commit is contained in:
parent
fcb1bcb91b
commit
ece3241041
1 changed files with 1 additions and 1 deletions
|
@ -590,7 +590,7 @@ namespace NzbDrone.Core.Organizer
|
|||
|
||||
private void AddIdTokens(Dictionary<string, Func<TokenMatch, string>> tokenHandlers, Series series)
|
||||
{
|
||||
tokenHandlers["{ImdbId}"] = m => series.ImdbId;
|
||||
tokenHandlers["{ImdbId}"] = m => series.ImdbId ?? string.Empty;
|
||||
tokenHandlers["{TvdbId}"] = m => series.TvdbId.ToString();
|
||||
tokenHandlers["{TvMazeId}"] = m => series.TvMazeId.ToString();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue