Forgot to call the default_view if no plugin felt responsible

This commit is contained in:
Gina Häußge 2016-08-19 09:00:38 +02:00
parent b435ecf9e8
commit aaeb2ef4db

View file

@ -357,6 +357,8 @@ def index():
break
else:
_logger.warn("UiPlugin {} returned an empty response".format(plugin._identifier))
else:
response = default_view()
if response is None:
return abort(404)