Browse Source

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 c699c546e4124da8c1978b86d1a424d24d3d77d6a

Andrew Rabert 5 years ago
parent
commit
6478cd2ea4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      MediaBrowser.Providers/TV/TheTVDB/TvdbSeriesProvider.cs

+ 1 - 1
MediaBrowser.Providers/TV/TheTVDB/TvdbSeriesProvider.cs

@@ -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();
         }