Update MediaBrowser.Providers/TV/TheTVDB/TvdbEpisodeProvider.cs

Co-Authored-By: Bond-009 <bond.009@outlook.com>
This commit is contained in:
Claus Vium 2019-08-16 19:53:28 +02:00 committed by GitHub
parent 11504321b5
commit 26b4fb21fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -206,7 +206,7 @@ namespace MediaBrowser.Providers.TV.TheTVDB
var roleStartIndex = currentActor.IndexOf('(');
string name = currentActor;
string role = "";
string role = string.Empty;
if (roleStartIndex != -1)
{
var roles = new List<string> {currentActor.Substring(roleStartIndex + 1)};