mirror of
https://github.com/tenox7/wrp.git
synced 2024-12-22 21:29:29 +00:00
remove else to improve readability
This commit is contained in:
parent
3ff226e1df
commit
3dddb70be0
15
wrp.go
15
wrp.go
@ -173,13 +173,13 @@ func pageServer(out http.ResponseWriter, req *http.Request) {
|
||||
w.req = req
|
||||
w.out = out
|
||||
w.parseForm()
|
||||
if len(w.url) > 4 {
|
||||
w.navigate()
|
||||
w.capture()
|
||||
} else {
|
||||
if len(w.url) < 4 {
|
||||
w.printPage("#FFFFFF")
|
||||
w.printFooter("", "")
|
||||
return
|
||||
}
|
||||
w.navigate()
|
||||
w.capture()
|
||||
}
|
||||
|
||||
// Process HTTP requests to ISMAP '/map/' url
|
||||
@ -203,13 +203,12 @@ func mapServer(out http.ResponseWriter, req *http.Request) {
|
||||
return
|
||||
}
|
||||
log.Printf("%s WrpReq from ISMAP: %+v\n", req.RemoteAddr, w)
|
||||
if len(w.url) > 4 {
|
||||
w.navigate()
|
||||
w.capture()
|
||||
} else {
|
||||
if len(w.url) < 4 {
|
||||
w.printPage("#FFFFFF")
|
||||
w.printFooter("", "")
|
||||
}
|
||||
w.navigate()
|
||||
w.capture()
|
||||
}
|
||||
|
||||
// Process HTTP requests for images '/img/' url
|
||||
|
Loading…
Reference in New Issue
Block a user