remove else to improve readability

This commit is contained in:
Antoni Sawicki 2020-10-26 01:49:03 -07:00
parent 3dddb70be0
commit d6b33ad140
1 changed files with 3 additions and 3 deletions

6
wrp.go
View File

@ -331,11 +331,11 @@ func (w wrpReq) capture() {
}
log.Printf("%s Landed on: %s, Height: %v\n", w.req.RemoteAddr, w.url, h)
w.printPage(fmt.Sprintf("#%02X%02X%02X", r, g, b))
height := int64(float64(w.height) / w.scale)
if w.height == 0 && h > 0 {
chromedp.Run(ctx, emulation.SetDeviceMetricsOverride(int64(float64(w.width)/w.scale), h+30, w.scale, false))
} else {
chromedp.Run(ctx, emulation.SetDeviceMetricsOverride(int64(float64(w.width)/w.scale), int64(float64(w.height)/w.scale), w.scale, false))
height = h + 30
}
chromedp.Run(ctx, emulation.SetDeviceMetricsOverride(int64(float64(w.width)/w.scale), height, w.scale, false))
// Capture screenshot...
err = chromedp.Run(ctx, chromedp.CaptureScreenshot(&pngcap))
if err != nil {