mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-23 21:47:14 -04:00
Invert the second if
This commit is contained in:
parent
15f7a2078b
commit
daf29233e6
1 changed files with 6 additions and 6 deletions
|
@ -224,15 +224,15 @@ namespace MediaBrowser.Providers.TV.TheTVDB
|
|||
var currentRole = episode.GuestStars[j];
|
||||
var roleEndIndex = currentRole.IndexOf(')');
|
||||
|
||||
if (roleEndIndex != -1)
|
||||
if (roleEndIndex == -1)
|
||||
{
|
||||
roles.Add(currentRole.TrimEnd(')'));
|
||||
// Update the outer index (keep in mind it adds 1 after the iteration)
|
||||
i = j;
|
||||
break;
|
||||
roles.Add(currentRole);
|
||||
}
|
||||
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue