Skip to content

Commit 1ca342c

Browse files
committed
Merge pull request #40 from arduino/fix_https
Give the correct port for upload
2 parents 6a12390 + af4189d commit 1ca342c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

info.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
func infoHandler(c *gin.Context) {
88
c.JSON(200, gin.H{
99
"http": "http://localhost" + port,
10-
"https": "https://localhost" + port,
10+
"https": "https://localhost" + portSSL,
1111
"ws": "ws://localhost" + port,
1212
"wss": "wss://localhost" + portSSL,
1313
})

0 commit comments

Comments
 (0)