Fix 404 error handler in UiFilePlugin
This commit is contained in:
parent
b4f4c12521
commit
c3f4591f91
1 changed files with 3 additions and 0 deletions
|
@ -73,6 +73,9 @@ class UiFileManagerPlugin(object):
|
||||||
return super().error404(path)
|
return super().error404(path)
|
||||||
|
|
||||||
path_parts = self.parsePath(path)
|
path_parts = self.parsePath(path)
|
||||||
|
if not path_parts:
|
||||||
|
return super().error404(path)
|
||||||
|
|
||||||
site = self.server.site_manager.get(path_parts["request_address"])
|
site = self.server.site_manager.get(path_parts["request_address"])
|
||||||
|
|
||||||
if not site or not site.content_manager.contents.get("content.json"):
|
if not site or not site.content_manager.contents.get("content.json"):
|
||||||
|
|
Loading…
Reference in a new issue