aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2020-07-19 17:16:49 +0200
committerGitHub <noreply@github.com>2020-07-19 17:16:49 +0200
commit7ad08953c0d36d5564ee3563d06eab435b197aa2 (patch)
treea4696d70ea8e932f5f480772183100e3135663dc
parentce07e458976c8d20985c4afa731d8a80f58a5303 (diff)
parent8a778c08d2bbd387ffcf92d2fb6004fda414a74d (diff)
Merge pull request #3590 from crobibero/tvdb-actors
Fix tvdb actors url
-rw-r--r--MediaBrowser.Providers/Plugins/TheTvdb/TvdbSeriesProvider.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Providers/Plugins/TheTvdb/TvdbSeriesProvider.cs b/MediaBrowser.Providers/Plugins/TheTvdb/TvdbSeriesProvider.cs
index 196e801c0..df48629d0 100644
--- a/MediaBrowser.Providers/Plugins/TheTvdb/TvdbSeriesProvider.cs
+++ b/MediaBrowser.Providers/Plugins/TheTvdb/TvdbSeriesProvider.cs
@@ -375,7 +375,7 @@ namespace MediaBrowser.Providers.Plugins.TheTvdb
if (!string.IsNullOrEmpty(actor.Image))
{
- personInfo.ImageUrl = TvdbUtils.TvdbImageBaseUrl + actor.Image;
+ personInfo.ImageUrl = TvdbUtils.BannerUrl + actor.Image;
}
if (!string.IsNullOrWhiteSpace(personInfo.Name))