Added message to failed history events

This commit is contained in:
Mark McDowall 2013-10-24 18:25:04 -07:00
parent 6dd2951f80
commit 769fcdfc80
5 changed files with 6 additions and 1 deletions

View File

@ -124,6 +124,7 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
historyItem.DownloadTime = sabHistoryItem.DownloadTime;
historyItem.Storage = sabHistoryItem.Storage;
historyItem.Category = sabHistoryItem.Category;
historyItem.Message = sabHistoryItem.FailMessage;
historyItem.Status = sabHistoryItem.Status == "Failed" ? HistoryStatus.Failed : HistoryStatus.Completed;
historyItems.Add(historyItem);

View File

@ -13,5 +13,6 @@ namespace NzbDrone.Core.Download
public String SourceTitle { get; set; }
public String DownloadClient { get; set; }
public String DownloadClientId { get; set; }
public String Message { get; set; }
}
}

View File

@ -73,7 +73,8 @@ namespace NzbDrone.Core.Download
Quality = historyItem.Quality,
SourceTitle = historyItem.SourceTitle,
DownloadClient = historyItem.Data[DOWNLOAD_CLIENT],
DownloadClientId = historyItem.Data[DOWNLOAD_CLIENT_ID]
DownloadClientId = historyItem.Data[DOWNLOAD_CLIENT_ID],
Message = failedItem.Message
});
}
}

View File

@ -11,6 +11,7 @@ namespace NzbDrone.Core.Download
public String Category { get; set; }
public Int32 DownloadTime { get; set; }
public String Storage { get; set; }
public String Message { get; set; }
public HistoryStatus Status { get; set; }
}

View File

@ -148,6 +148,7 @@ namespace NzbDrone.Core.History
history.Data.Add("DownloadClient", message.DownloadClient);
history.Data.Add("DownloadClientId", message.DownloadClientId);
history.Data.Add("Message", message.Message);
_historyRepository.Insert(history);
}