From 87489fca538e1fb73484d69ef675fbd90cd50c27 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sun, 7 Mar 2021 11:31:03 -0500 Subject: [PATCH] Fixed: BTN SetCookies NotImplemented error --- .../BroadcastheNet/BroadcastheNetRequestGenerator.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Indexers/Definitions/BroadcastheNet/BroadcastheNetRequestGenerator.cs b/src/NzbDrone.Core/Indexers/Definitions/BroadcastheNet/BroadcastheNetRequestGenerator.cs index b36e039f6..25eac250f 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/BroadcastheNet/BroadcastheNetRequestGenerator.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/BroadcastheNet/BroadcastheNetRequestGenerator.cs @@ -1,3 +1,4 @@ +using System; using System.Collections.Generic; using NzbDrone.Common.Extensions; using NzbDrone.Common.Http; @@ -13,8 +14,9 @@ namespace NzbDrone.Core.Indexers.BroadcastheNet public IndexerCapabilities Capabilities { get; set; } public int? LastRecentTorrentID { get; set; } - public System.Func> GetCookies { get => throw new System.NotImplementedException(); set => throw new System.NotImplementedException(); } - public System.Action, System.DateTime?> CookiesUpdater { get => throw new System.NotImplementedException(); set => throw new System.NotImplementedException(); } + + public Func> GetCookies { get; set; } + public Action, DateTime?> CookiesUpdater { get; set; } public string BaseUrl { get; set; } public BroadcastheNetRequestGenerator()