Skip to content

Commit

Permalink
Always ignore all errors
Browse files Browse the repository at this point in the history
  • Loading branch information
henrique-coder committed Jan 17, 2025
1 parent 43dfe26 commit 065e454
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion streamsnapper/scraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,9 +416,9 @@ def __init__(self, logging: bool = False) -> None:
"geo_bypass": True,
"noplaylist": True,
"age_limit": None,
"ignoreerrors": True,
"quiet": logging,
"no_warnings": logging,
"ignoreerrors": logging,
}
self._extractor: Type[YouTubeExtractor] = YouTubeExtractor()
self._raw_youtube_data: Dict[Any, Any] = {}
Expand Down

0 comments on commit 065e454

Please sign in to comment.