mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-02 08:23:04 +00:00
Fix infinite looping when scanning TV metadata
It's a possible that name and sb will never be equal. This is caused by
additional replacements before this loop.
Regression introduced in c699c546e4
This commit is contained in:
@@ -317,7 +317,7 @@ namespace MediaBrowser.Providers.TV.TheTVDB
|
||||
{
|
||||
prevLength = sb.Length;
|
||||
sb.Replace(" ", " ");
|
||||
} while (name.Length != prevLength);
|
||||
} while (sb.Length != prevLength);
|
||||
|
||||
return sb.ToString().Trim();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user