From 97ab4cbcbd8c051aacf2fe563b8d86e974e53d93 Mon Sep 17 00:00:00 2001 From: Leonardo Galli Date: Wed, 7 Feb 2018 12:04:27 +0100 Subject: [PATCH] Fixed: Invalid runtime from CP causing issues importing. Fixes #2081 --- 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 6a04aca3e..bea66105d 100644 --- a/src/NzbDrone.Core/NetImport/CouchPotato/CouchPotatoAPI.cs +++ b/src/NzbDrone.Core/NetImport/CouchPotato/CouchPotatoAPI.cs @@ -40,7 +40,7 @@ public class Info public bool? via_tmdb { get; set; } public string[] actors { get; set; } public string[] writers { get; set; } - public int? runtime { get; set; } + //public int? runtime { get; set; } public string type { get; set; } public string released { get; set; } }