remove windows related messages

self restarts now work, so no need.
This commit is contained in:
Harvey Tindall
2020-09-08 23:13:44 +01:00
parent bbb0568cc4
commit 831296a3e8
4 changed files with 1 additions and 26 deletions
+1 -7
View File
@@ -415,14 +415,8 @@ func start(asDaemon, firstCall bool) {
}
app.info.Printf("Starting router @ %s", address)
} else {
windows := false
if PLATFORM == "windows" {
windows = true
}
router.GET("/", func(gc *gin.Context) {
gc.HTML(200, "setup.html", gin.H{
"windows": windows,
})
gc.HTML(200, "setup.html", gin.H{})
})
router.POST("/testJF", app.TestJF)
router.POST("/modifyConfig", app.ModifyConfig)