Merge pull request #990 from bigbear2nd/master

Add directory separator to autocomplete. Fixes #984
This commit is contained in:
Jakob Borg 2014-11-20 16:09:57 +01:00
commit 904b211d98

View File

@ -658,7 +658,7 @@ func restGetAutocompleteDirectory(w http.ResponseWriter, r *http.Request) {
for _, subdirectory := range subdirectories { for _, subdirectory := range subdirectories {
info, err := os.Stat(subdirectory) info, err := os.Stat(subdirectory)
if err == nil && info.IsDir() { if err == nil && info.IsDir() {
ret = append(ret, subdirectory) ret = append(ret, subdirectory + pathSeparator)
if len(ret) > 9 { if len(ret) > 9 {
break break
} }