mirror of
https://github.com/Readarr/Readarr
synced 2025-12-15 12:52:27 +01:00
Fixed: Set remote album ID so we don't always think album updated
This commit is contained in:
parent
1dcccf2683
commit
c898a18d31
2 changed files with 2 additions and 0 deletions
|
|
@ -95,6 +95,7 @@ protected override RemoteData GetRemoteData(Album local, List<Album> remote)
|
|||
}
|
||||
|
||||
result.Entity = tuple.Item2;
|
||||
result.Entity.Id = local.Id;
|
||||
result.Metadata = tuple.Item3;
|
||||
return result;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -308,6 +308,7 @@ public void Execute(RefreshArtistCommand message)
|
|||
try
|
||||
{
|
||||
updated = RefreshEntityInfo(artist, null, true, false);
|
||||
_logger.Trace($"Artist {artist} updated: {updated}");
|
||||
RescanArtist(artist, isNew, trigger, updated);
|
||||
}
|
||||
catch (Exception e)
|
||||
|
|
|
|||
Loading…
Reference in a new issue