Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/959ac461805a28ff5c764270ed9f1fa8537ab0a5?style=unified&whitespace=ignore-change You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Refresh artist and correctly trigger search on single album adds for new artists

pull/4064/head
Qstick 2 years ago
parent ebece0b897
commit 959ac46180

@ -22,6 +22,12 @@ namespace NzbDrone.Core.Music
public bool ShouldRefresh(Artist artist)
{
if (artist.LastInfoSync == null)
{
_logger.Trace("Artist {0} was just added, should refresh.", artist.Name);
return true;
}
if (artist.LastInfoSync < DateTime.UtcNow.AddDays(-30))
{
_logger.Trace("Artist {0} last updated more than 30 days ago, should refresh.", artist.Name);

Loading…
Cancel
Save