1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-21 22:05:38 -04:00

Fixed: RemotePoster on v3 api provides local url rather than thetvdb url

This commit is contained in:
Taloth Saldono
2020-03-22 11:59:26 +01:00
parent e23a879669
commit 4219cdb364
3 changed files with 5 additions and 2 deletions
@@ -42,7 +42,7 @@ namespace Sonarr.Api.V3.Series
if (poster != null)
{
resource.RemotePoster = poster.Url;
resource.RemotePoster = poster.RemoteUrl;
}
resource.Folder = _fileNameBuilder.GetSeriesFolder(currentSeries);