|
|
|
@ -219,6 +219,7 @@ namespace NzbDrone.Core.History
|
|
|
|
|
history.Data.Add("DownloadClientName", message.DownloadClientInfo?.Name);
|
|
|
|
|
history.Data.Add("ReleaseGroup", message.EpisodeInfo.ReleaseGroup);
|
|
|
|
|
history.Data.Add("CustomFormatScore", message.EpisodeInfo.CustomFormatScore.ToString());
|
|
|
|
|
history.Data.Add("Size", message.EpisodeInfo.Size.ToString());
|
|
|
|
|
|
|
|
|
|
_historyRepository.Insert(history);
|
|
|
|
|
}
|
|
|
|
@ -244,6 +245,7 @@ namespace NzbDrone.Core.History
|
|
|
|
|
history.Data.Add("DownloadClientName", message.TrackedDownload?.DownloadItem.DownloadClientInfo.Name);
|
|
|
|
|
history.Data.Add("Message", message.Message);
|
|
|
|
|
history.Data.Add("ReleaseGroup", message.TrackedDownload?.RemoteEpisode?.ParsedEpisodeInfo?.ReleaseGroup);
|
|
|
|
|
history.Data.Add("Size", message.TrackedDownload?.DownloadItem.TotalSize.ToString());
|
|
|
|
|
|
|
|
|
|
_historyRepository.Insert(history);
|
|
|
|
|
}
|
|
|
|
@ -277,6 +279,7 @@ namespace NzbDrone.Core.History
|
|
|
|
|
|
|
|
|
|
history.Data.Add("Reason", message.Reason.ToString());
|
|
|
|
|
history.Data.Add("ReleaseGroup", message.EpisodeFile.ReleaseGroup);
|
|
|
|
|
history.Data.Add("Size", message.EpisodeFile.Size.ToString());
|
|
|
|
|
|
|
|
|
|
_historyRepository.Insert(history);
|
|
|
|
|
}
|
|
|
|
@ -307,6 +310,7 @@ namespace NzbDrone.Core.History
|
|
|
|
|
history.Data.Add("Path", path);
|
|
|
|
|
history.Data.Add("RelativePath", relativePath);
|
|
|
|
|
history.Data.Add("ReleaseGroup", message.EpisodeFile.ReleaseGroup);
|
|
|
|
|
history.Data.Add("Size", message.EpisodeFile.Size.ToString());
|
|
|
|
|
|
|
|
|
|
_historyRepository.Insert(history);
|
|
|
|
|
}
|
|
|
|
@ -334,6 +338,7 @@ namespace NzbDrone.Core.History
|
|
|
|
|
history.Data.Add("DownloadClientName", message.DownloadClientInfo.Name);
|
|
|
|
|
history.Data.Add("Message", message.Message);
|
|
|
|
|
history.Data.Add("ReleaseGroup", message.TrackedDownload?.RemoteEpisode?.ParsedEpisodeInfo?.ReleaseGroup);
|
|
|
|
|
history.Data.Add("Size", message.TrackedDownload?.DownloadItem.TotalSize.ToString());
|
|
|
|
|
|
|
|
|
|
historyToAdd.Add(history);
|
|
|
|
|
}
|
|
|
|
|