mirror of
https://github.com/filebrowser/filebrowser.git
synced 2026-07-20 18:19:30 +00:00
fix directories in search results can not be opened by click (#583)
This commit is contained in:
parent
c01ebf33ef
commit
ea3576da7e
1 changed files with 3 additions and 0 deletions
|
|
@ -329,6 +329,9 @@ func search(c *fb.Context, w http.ResponseWriter, r *http.Request) (int, error)
|
|||
return nil
|
||||
}
|
||||
}
|
||||
if f.IsDir() {
|
||||
originalPath = originalPath + "/"
|
||||
}
|
||||
|
||||
response, _ := json.Marshal(map[string]interface{}{
|
||||
"dir": f.IsDir(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue