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

Fixed: Sending Manual Interaction Required notifications to Discord for unknown movies

pull/10809/head
Bogdan 3 months ago
parent 410870d21e
commit 0e25b2708c

@ -646,13 +646,19 @@ namespace NzbDrone.Core.Notifications.Discord
return title.Length > 256 ? $"{title.AsSpan(0, 253)}..." : title;
}
private IEnumerable<string> GetTagLabels(Movie movie)
private List<string> GetTagLabels(Movie movie)
{
return movie.Tags?
.Select(t => _tagRepository.Find(t)?.Label)
if (movie == null)
{
return null;
}
return _tagRepository.GetTags(movie.Tags)
.Select(t => t.Label)
.Where(l => l.IsNotNullOrWhiteSpace())
.OrderBy(l => l)
.Take(5);
.Take(5)
.ToList();
}
}
}

Loading…
Cancel
Save