Invert the second if

This commit is contained in:
Claus Vium 2019-08-16 20:07:00 +02:00
parent 15f7a2078b
commit daf29233e6

View file

@ -224,15 +224,15 @@ namespace MediaBrowser.Providers.TV.TheTVDB
var currentRole = episode.GuestStars[j]; var currentRole = episode.GuestStars[j];
var roleEndIndex = currentRole.IndexOf(')'); var roleEndIndex = currentRole.IndexOf(')');
if (roleEndIndex != -1) if (roleEndIndex == -1)
{ {
roles.Add(currentRole.TrimEnd(')')); roles.Add(currentRole);
// Update the outer index (keep in mind it adds 1 after the iteration)
i = j;
break;
} }
roles.Add(currentRole); roles.Add(currentRole.TrimEnd(')'));
// Update the outer index (keep in mind it adds 1 after the iteration)
i = j;
break;
} }
result.AddPerson(new PersonInfo result.AddPerson(new PersonInfo