diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2019-08-16 19:53:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-16 19:53:28 +0200 |
| commit | 26b4fb21fe7992d5a489ed2ced74ee58671ee2d4 (patch) | |
| tree | 034620ef53f632299672bb6ee9fef3eacc2f8cc9 | |
| parent | 11504321b5e76a0eb9bda57bfcae4f85df994384 (diff) | |
Update MediaBrowser.Providers/TV/TheTVDB/TvdbEpisodeProvider.cs
Co-Authored-By: Bond-009 <bond.009@outlook.com>
| -rw-r--r-- | MediaBrowser.Providers/TV/TheTVDB/TvdbEpisodeProvider.cs | 2 |
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)}; |
