Check content type

main
Bob Mottram 2019-11-22 18:37:07 +00:00
parent d2bc9b52b4
commit a8c72965f5
1 changed files with 21 additions and 15 deletions

View File

@ -3510,6 +3510,12 @@ class PubServer(BaseHTTPRequestHandler):
print('POST size too large')
return None
if not headers.get('Content-Type'):
if headers.get('Content-type'):
headers['Content-Type']=headers['Content-type']
elif headers.get('content-type'):
headers['Content-Type']=headers['content-type']
if headers.get('Content-Type'):
if ' boundary=' in headers['Content-Type']:
boundary=headers['Content-Type'].split('boundary=')[1]
if ';' in boundary: