mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 01:27:00 +00:00
Incorrect number of parameters.
This commit is contained in:
parent
9fe8477a40
commit
c6c68c0c75
2 changed files with 2 additions and 2 deletions
|
@ -126,7 +126,7 @@ private string DownloadFromWebUrl(RemoteEpisode remoteEpisode, String torrentUrl
|
||||||
|
|
||||||
torrentFile = response.ResponseData;
|
torrentFile = response.ResponseData;
|
||||||
|
|
||||||
_logger.Debug("Downloading torrent for episode '{0}' finished ({1} bytes from {2})", torrentFile.Length, torrentUrl);
|
_logger.Debug("Downloading torrent for episode '{0}' finished ({1} bytes from {2})", remoteEpisode.Release.Title, torrentFile.Length, torrentUrl);
|
||||||
}
|
}
|
||||||
catch (HttpException ex)
|
catch (HttpException ex)
|
||||||
{
|
{
|
||||||
|
|
|
@ -49,7 +49,7 @@ public override String Download(RemoteEpisode remoteEpisode)
|
||||||
{
|
{
|
||||||
nzbData = _httpClient.Get(new HttpRequest(url)).ResponseData;
|
nzbData = _httpClient.Get(new HttpRequest(url)).ResponseData;
|
||||||
|
|
||||||
_logger.Debug("Downloaded nzb for episode '{0}' finished ({1} bytes from {2})", nzbData.Length, url);
|
_logger.Debug("Downloaded nzb for episode '{0}' finished ({1} bytes from {2})", remoteEpisode.Release.Title, nzbData.Length, url);
|
||||||
}
|
}
|
||||||
catch (HttpException ex)
|
catch (HttpException ex)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue