Attempt NetSurf compatibility

merge-requests/30/head
Bob Mottram 2023-06-14 23:34:58 +01:00
parent 25c5bb4766
commit c71c1b62be
1 changed files with 2 additions and 1 deletions

View File

@ -810,7 +810,8 @@ class PubServer(BaseHTTPRequestHandler):
return False
if accept_str.startswith('*') or 'text/html' in accept_str:
if self.headers.get('User-Agent'):
if text_mode_browser(self.headers['User-Agent']):
ua_str = self.headers['User-Agent']
if text_mode_browser(ua_str) or 'NetSurf/' in ua_str:
return True
if 'text/html' not in accept_str:
return False