Merge pull request #53 from vbanos/bugfix-needs-browsing

bugfix for BrozzlerWorker._needs_browsing
This commit is contained in:
Noah Levitt 2017-08-01 10:14:56 -07:00 committed by GitHub
commit f7fe06874d

View File

@ -447,7 +447,9 @@ class BrozzlerWorker:
if txn['response_headers'].get_content_type() in [
'text/html', 'application/xhtml+xml']:
return True
return False
return False
else:
return True
def _already_fetched(self, page, brozzler_spy):
if brozzler_spy: