Fix 404 error handler in UiFilePlugin

This commit is contained in:
Ivanq 2020-12-27 13:25:18 +03:00
parent b4f4c12521
commit c3f4591f91
1 changed files with 3 additions and 0 deletions

View File

@ -73,6 +73,9 @@ class UiFileManagerPlugin(object):
return super().error404(path)
path_parts = self.parsePath(path)
if not path_parts:
return super().error404(path)
site = self.server.site_manager.get(path_parts["request_address"])
if not site or not site.content_manager.contents.get("content.json"):