[youtube] Fix --mark-watched with --cookies-from-browser

Closes #1019
This commit is contained in:
pukkandan 2021-09-24 02:16:03 +05:30
parent 8100c77223
commit 1813a6ccd4
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698

View File

@ -3503,9 +3503,11 @@ def _get_automatic_captions(self, *args, **kwargs):
raise NotImplementedError('This method must be implemented by subclasses')
def mark_watched(self, *args, **kwargs):
if (self.get_param('mark_watched', False)
and (self._get_login_info()[0] is not None
or self.get_param('cookiefile') is not None)):
if not self.get_param('mark_watched', False):
return
if (self._get_login_info()[0] is not None
or self.get_param('cookiefile')
or self.get_param('cookiesfrombrowser')):
self._mark_watched(*args, **kwargs)
def _mark_watched(self, *args, **kwargs):