Skip to content

Commit 991ac1c

Browse files
committed
fix: ensure only 1 xref per company exist
Closes #1191
1 parent 3013fcf commit 991ac1c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Shoko.Server/Providers/TMDB/TmdbMetadataService.cs

+5-2
Original file line numberDiff line numberDiff line change
@@ -1931,16 +1931,18 @@ private void PurgeTitlesAndOverviews(ForeignEntityType foreignType, int foreignI
19311931
private async Task<bool> UpdateCompanies(IEntityMetadata tmdbEntity, List<ProductionCompany> companies)
19321932
{
19331933
var existingXrefs = _xrefTmdbCompanyEntity.GetByTmdbEntityTypeAndID(tmdbEntity.Type, tmdbEntity.Id)
1934-
.ToDictionary(xref => xref.TmdbCompanyID);
1934+
.GroupBy(xref => xref.TmdbCompanyID)
1935+
.ToDictionary(xref => xref.Key, groupBy => groupBy.ToList());
19351936
var xrefsToAdd = 0;
19361937
var xrefsToSkip = new HashSet<int>();
19371938
var xrefsToSave = new List<TMDB_Company_Entity>();
19381939
var indexCounter = 0;
19391940
foreach (var company in companies)
19401941
{
19411942
var currentIndex = indexCounter++;
1942-
if (existingXrefs.TryGetValue(company.Id, out var existingXref))
1943+
if (existingXrefs.TryGetValue(company.Id, out var existingXrefList))
19431944
{
1945+
var existingXref = existingXrefList[0];
19441946
if (existingXref.Ordering != currentIndex || existingXref.ReleasedAt != tmdbEntity.ReleasedAt)
19451947
{
19461948
existingXref.Ordering = currentIndex;
@@ -1958,6 +1960,7 @@ private async Task<bool> UpdateCompanies(IEntityMetadata tmdbEntity, List<Produc
19581960
await UpdateCompany(company);
19591961
}
19601962
var xrefsToRemove = existingXrefs.Values
1963+
.SelectMany(xrefs => xrefs)
19611964
.ExceptBy(xrefsToSkip, o => o.TMDB_Company_EntityID)
19621965
.ToList();
19631966

0 commit comments

Comments
 (0)