morss: fix cgi_app silent output

*Must* return sth
master
pictuga 2020-03-21 23:25:25 +01:00
parent 463530f02c
commit 758ff404a8
1 changed files with 5 additions and 2 deletions

View File

@ -552,8 +552,11 @@ def cgi_app(environ, start_response):
rss = FeedGather(rss, url, options)
out = FeedFormat(rss, options)
if not options.silent:
return out
if options.silent:
return ['']
else:
return [out]
def middleware(func):
" Decorator to turn a function into a wsgi middleware "