Merge remote-tracking branch 'origin/master' into feature/autocomplete

This commit is contained in:
Ben Busby 2020-05-24 12:59:47 -06:00
commit 351a584fee

View File

@ -90,6 +90,11 @@ class Filter:
for script in soup('script'):
script.decompose()
# Remove google's language/time config
st_card = soup.find('div', id='st-card')
if st_card:
st_card.decompose()
footer = soup.find('div', id='sfooter')
if footer:
footer.decompose()