Merge pull request #2716 from imachug/uifile-404-fix

Fix 404 error handler in UiFilePlugin
This commit is contained in:
ZeroNet 2021-01-25 03:24:19 +01:00 committed by GitHub
commit 454c0b2e7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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"):