[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
1 changed files with 5 additions and 3 deletions

View File

@ -3503,9 +3503,11 @@ class InfoExtractor(object):
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):