From 8a778c08d2bbd387ffcf92d2fb6004fda414a74d Mon Sep 17 00:00:00 2001 From: crobibero Date: Sun, 19 Jul 2020 08:21:26 -0600 Subject: [PATCH] Fix tvdb actors url --- MediaBrowser.Providers/Plugins/TheTvdb/TvdbSeriesProvider.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MediaBrowser.Providers/Plugins/TheTvdb/TvdbSeriesProvider.cs b/MediaBrowser.Providers/Plugins/TheTvdb/TvdbSeriesProvider.cs index 196e801c03..df48629d03 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))