We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34455ab commit d56ff47Copy full SHA for d56ff47
conn.go
@@ -57,6 +57,9 @@ func uploadHandler(c *gin.Context) {
57
extraInfo.authdata.UserName = c.PostForm("auth_user")
58
extraInfo.authdata.Password = c.PostForm("auth_pass")
59
commandline := c.PostForm("commandline")
60
+ if commandline == "undefined" {
61
+ commandline = ""
62
+ }
63
extraInfo.use_1200bps_touch, _ = strconv.ParseBool(c.PostForm("use_1200bps_touch"))
64
extraInfo.wait_for_upload_port, _ = strconv.ParseBool(c.PostForm("wait_for_upload_port"))
65
extraInfo.networkPort, _ = strconv.ParseBool(c.PostForm("network"))
0 commit comments