Missing parentheses.

This commit is contained in:
Adam Harrison 2021-11-07 17:57:15 -05:00
parent 24669293c7
commit 5b8c08e93a
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ local fullscreen = false
local function suggest_directory(text)
text = common.home_expand(text)
return common.home_encode_list(text == "" or text == common.home_expand(common.dirname(core.project_dir))
return common.home_encode_list((text == "" or text == common.home_expand(common.dirname(core.project_dir)))
and core.recent_projects or common.dir_path_suggest(text))
end