Handle silly links

This commit is contained in:
Mark Qvist
2026-05-17 23:09:21 +02:00
parent 63947ed69a
commit 0333884877
+1
View File
@@ -705,6 +705,7 @@ class NomadNetworkNode():
content = self.m_heading("Invalid Path", 1) + "\n\nNo file path specified.\n"
return self.render_template(content, st=st)
file_path = file_path.lstrip("./").replace("/./", "/")
file_ext = os.path.splitext(file_path)[1].lower()
renderable = file_ext in self.RENDERABLE_EXTS
if not renderable: raw = True; render = False