Bugfix: Tagger Ignoing Disambiguation When Linking Performer (#6308)

This commit is contained in:
Gykes 2025-11-25 17:06:13 -08:00 committed by GitHub
parent ca357b9eb3
commit d14053b570
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -593,7 +593,12 @@ export const TaggerContext: React.FC = ({ children }) => {
return {
...r,
performers: r.performers.map((p) => {
if (p.name === performer.name) {
// Match by remote_site_id if available, otherwise fall back to name
const matches = performer.remote_site_id
? p.remote_site_id === performer.remote_site_id
: p.name === performer.name;
if (matches) {
return {
...p,
stored_id: performerID,