diff options
| author | crobibero <cody@robibe.ro> | 2020-07-19 08:21:26 -0600 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2020-07-19 08:21:26 -0600 |
| commit | 8a778c08d2bbd387ffcf92d2fb6004fda414a74d (patch) | |
| tree | 2242bba9be5cbb1a9667f8670b0595fecd1f38da | |
| parent | 6e1735d31120222e0873e9d48c4bc07295e31950 (diff) | |
Fix tvdb actors url
| -rw-r--r-- | MediaBrowser.Providers/Plugins/TheTvdb/TvdbSeriesProvider.cs | 2 |
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)) |
