We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a1e0c2 commit 49ab74eCopy full SHA for 49ab74e
marimo/_server/recents.py
@@ -86,10 +86,10 @@ def get_recents(
86
)
87
files: list[MarimoFile] = []
88
89
- base_dir = (directory or pathlib.Path.cwd()).resolve()
+ base_dir = directory or pathlib.Path.cwd()
90
limited_files = state.files[: self.MAX_FILES]
91
for file in limited_files:
92
- file_path = pathlib.Path(file).resolve()
+ file_path = pathlib.Path(file)
93
if _is_tmp_file(file) or not file_path.is_relative_to(base_dir):
94
continue
95
if not file_path.exists():
0 commit comments