From fc2cc626f07328a6c71b5e21853e4cfa7b1e6256 Mon Sep 17 00:00:00 2001
From: garret <garret1317@yandex.com>
Date: Wed, 31 Jan 2024 20:21:59 +0000
Subject: [PATCH] [ie/cineverse] Detect when login required (#9081)

Partially addresses #9072
Authored by: garret1317
---
 yt_dlp/extractor/cineverse.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/yt_dlp/extractor/cineverse.py b/yt_dlp/extractor/cineverse.py
index c9fa789b78..032c4334b1 100644
--- a/yt_dlp/extractor/cineverse.py
+++ b/yt_dlp/extractor/cineverse.py
@@ -67,7 +67,10 @@ class CineverseIE(CineverseBaseIE):
         html = self._download_webpage(url, video_id)
         idetails = self._search_nextjs_data(html, video_id)['props']['pageProps']['idetails']
 
-        if idetails.get('err_code') == 1200:
+        err_code = idetails.get('err_code')
+        if err_code == 1002:
+            self.raise_login_required()
+        elif err_code == 1200:
             self.raise_geo_restricted(
                 'This video is not available from your location due to geo restriction. '
                 'You may be able to bypass it by using the /details/ page instead of the /watch/ page',