Send CGI HTTP headers earlier

So that browsers show that sth is going on
master
pictuga 2014-01-15 21:02:47 +01:00
parent bcbcf3b559
commit 0f7bc568e4
1 changed files with 2 additions and 1 deletions

View File

@ -700,13 +700,14 @@ def cgi_app(environ, start_response):
url, cache = Init(url, os.getcwd() + '/cache', options)
RSS = Fetch(url, cache, options)
RSS = Gather(RSS, url, cache, options)
if headers['content-type'] == 'text/xml':
headers['content-type'] = RSS.mimetype
start_response(headers['status'], headers.items())
RSS = Gather(RSS, url, cache, options)
if not DEBUG and not options.silent:
return After(RSS, options)