Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/ece3241041d5e489f4162e073337848d12467d4a You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Adding series with unknown IMDB ID and series folder includes IMDB ID

pull/2984/head
Mark McDowall 6 years ago
parent fcb1bcb91b
commit ece3241041

@ -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…
Cancel
Save