Browse Source

Merge pull request #990 from bigbear2nd/master

Add directory separator to autocomplete. Fixes #984
Jakob Borg 11 năm trước cách đây
mục cha
commit
904b211d98
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      cmd/syncthing/gui.go

+ 1 - 1
cmd/syncthing/gui.go

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