mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 21:13:28 -07:00
cleaned up parsing logic and structure.
This commit is contained in:
parent
cd2761d07d
commit
6e88f55a54
120 changed files with 2149 additions and 3064 deletions
|
@ -83,7 +83,7 @@ namespace NzbDrone.Core.ExternalNotification
|
|||
try
|
||||
{
|
||||
_logger.Trace("Sending grab notification to {0}", Name);
|
||||
OnGrab(message.ParseResult.GetDownloadTitle());
|
||||
OnGrab(message.Episode.GetDownloadTitle());
|
||||
|
||||
}
|
||||
catch (Exception e)
|
||||
|
@ -100,7 +100,7 @@ namespace NzbDrone.Core.ExternalNotification
|
|||
try
|
||||
{
|
||||
_logger.Trace("Sending download notification to {0}", Name);
|
||||
OnDownload(message.ParseResult.ToString(), message.ParseResult.Series);
|
||||
OnDownload(message.ParseResult.ToString(), message.Series);
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue