juliensalinas / torrengo

Torrengo is a CLI (command line) program written in Go which concurrently searches torrents from various sources.
https://juliensalinas.com/en/golang-concurrent-torrent-scraper-cli-torrengo/
GNU General Public License v3.0
97 stars 15 forks source link

Install failure #16

Closed kcchrist closed 3 years ago

kcchrist commented 3 years ago

Not certain why my install fails.

Throws this error. Is this on my end or yours? How can I help determine that?

go/src/github.com/juliensalinas/torrengo/core/core.go:176:17: assignment mismatch: 2 variables but network.SetCookie(cookie.Name, cookie.Value).WithExpires(&expiry).WithDomain(cookie.Domain).WithPath(cookie.Path).WithHTTPOnly(cookie.HttpOnly).WithSecure(cookie.Secure).Do returns 1 values

juliensalinas commented 3 years ago

Thanks a lot @kcchrist . It was due to a breaking change in the ChromeDP lib: https://github.com/chromedp/cdproto/commit/2cc87dae3ee38df0ab811aeb3450793309d27bfa I just fixed the code accordingly 👍🏻

kcchrist commented 3 years ago

Thank you. Still getting the same error on install attempt go get at 176:17, however.

juliensalinas commented 3 years ago

It must be because you did not update the lib. You should run go get -u. The -u option is important. Let me know if it's still not working.