Fixed invalid prefix stripping in rngit page server
parent
dc9cf0c2f4
commit
77c8256a1a
|
|
@ -709,7 +709,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_path = file_path.removeprefix("./").replace("/./", "/")
|
||||
file_ext = os.path.splitext(file_path)[1].lower()
|
||||
renderable = file_ext in self.RENDERABLE_EXTS
|
||||
if not renderable: raw = True; render = False
|
||||
|
|
|
|||
Loading…
Reference in New Issue