diff --git a/couchpotato/core/downloaders/rtorrent_.py b/couchpotato/core/downloaders/rtorrent_.py index cb43a88..d55c5c4 100644 --- a/couchpotato/core/downloaders/rtorrent_.py +++ b/couchpotato/core/downloaders/rtorrent_.py @@ -97,13 +97,12 @@ class rTorrent(DownloaderBase): # Construct client self.rt = RTorrent( url, self.getAuth(), - verify_server=True, verify_ssl=self.getVerifySsl() ) self.error_msg = '' try: - self.rt._verify_conn() + self.rt.connection.verify() except AssertionError as e: self.error_msg = e.message self.rt = None