aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MediaBrowser.Providers/TV/TheTVDB/TvdbEpisodeProvider.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Providers/TV/TheTVDB/TvdbEpisodeProvider.cs b/MediaBrowser.Providers/TV/TheTVDB/TvdbEpisodeProvider.cs
index 5b0f326c0..59df6ade4 100644
--- a/MediaBrowser.Providers/TV/TheTVDB/TvdbEpisodeProvider.cs
+++ b/MediaBrowser.Providers/TV/TheTVDB/TvdbEpisodeProvider.cs
@@ -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)};