From d09d30544f37f12c2f13ceb06ce1f3c16a8439a3 Mon Sep 17 00:00:00 2001 From: Devin Buhl Date: Tue, 24 Jan 2017 13:22:02 -0500 Subject: [PATCH] allow null value for seed time. --- src/NzbDrone.Core/NetImport/CouchPotato/CouchPotatoAPI.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/NetImport/CouchPotato/CouchPotatoAPI.cs b/src/NzbDrone.Core/NetImport/CouchPotato/CouchPotatoAPI.cs index 1da2039ed..6a11b87b4 100644 --- a/src/NzbDrone.Core/NetImport/CouchPotato/CouchPotatoAPI.cs +++ b/src/NzbDrone.Core/NetImport/CouchPotato/CouchPotatoAPI.cs @@ -59,7 +59,7 @@ namespace NzbDrone.Core.NetImport.CouchPotato public int leechers { get; set; } public int score { get; set; } public string provider { get; set; } - public int seed_time { get; set; } + public int? seed_time { get; set; } public string provider_extra { get; set; } public string detail_url { get; set; } public string type { get; set; }