Change c.Visit(u) call to blocking, from goroutine

This commit is contained in:
asdf 2019-11-27 18:37:39 +11:00
parent 76cf3da4ae
commit 67293823e0

View File

@ -817,7 +817,7 @@ func (c *client) goToURL(u string) {
return
}
go c.Visit(u)
c.Visit(u)
}
func (c *client) goToLink(l string) {