mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 14:39:47 -04:00
Added NzbTitle to History item and will set it when adding to the DB.
This commit is contained in:
@@ -199,6 +199,7 @@ private void QueueIfWanted(NzbInfoModel nzb, Indexer indexer)
|
||||
history.IndexerName = indexer.IndexerName;
|
||||
history.IsProper = nzb.Proper;
|
||||
history.Quality = nzb.Quality;
|
||||
history.NzbTitle = nzb.Title;
|
||||
|
||||
_history.Insert(history);
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@ public class History
|
||||
public int HistoryId { get; set; }
|
||||
public virtual int EpisodeId { get; set; }
|
||||
public virtual string IndexerName { get; set; }
|
||||
public string NzbTitle { get; set; }
|
||||
public QualityTypes Quality { get; set; }
|
||||
public DateTime Date { get; set; }
|
||||
public bool IsProper { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user