We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7ecbe8 commit 4e26977Copy full SHA for 4e26977
1 file changed
lcode.go
@@ -5,6 +5,7 @@ import (
5
"net/http"
6
"os"
7
"os/signal"
8
+ "path"
9
"path/filepath"
10
11
"github.com/shynome/httprelay-go"
@@ -27,7 +28,7 @@ func main() {
27
28
db.Allow(codedir)
29
defer db.Deny(codedir)
30
- vscodeLink := genVscodeLink(proxy.Auth.ID, codedir)
31
+ vscodeLink := genVscodeLink(proxy.Auth.ID, path.Join("/dav/", codedir))
32
33
fmt.Println(vscodeLink)
34
// go reqOpen(vscodeLink)
0 commit comments