Fix incorrect usage of TmdbId in log message, replace with TvdbId

This commit is contained in:
scphantm 2026-04-27 16:08:27 -04:00
parent 5db833d59b
commit 03403b7853
No known key found for this signature in database
GPG key ID: 3512C53D8C6FC41E

View file

@ -294,7 +294,7 @@ private void TagExisting(ImportListDefinition importList, ImportListItemInfo rep
if (preCount != series.Tags.Count)
{
_seriesService.UpdateSeries(series);
_logger.Debug("{0} [{1}] tagged existing series", report.TmdbId, report.Title);
_logger.Debug("{0} [{1}] tagged existing series", report.TvdbId, report.Title);
}
}
}