We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe035db commit ca37991Copy full SHA for ca37991
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM golang:1.23 AS builder
+FROM golang:1.24 AS builder
2
3
WORKDIR /app
4
COPY . .
utils/methods.go
@@ -171,8 +171,7 @@ func RefreshAstraToken(chromedpCtx context.Context) map[string][]string {
171
172
// Save all cookies to string
173
cookieStr := ""
174
- _, err = chromedp.RunResponse(chromedpCtx,
175
- chromedp.WaitVisible(`body`, chromedp.ByQuery),
+ err = chromedp.Run(chromedpCtx,
176
chromedp.ActionFunc(func(ctx context.Context) error {
177
cookies, err := network.GetCookies().Do(ctx)
178
if err != nil {
0 commit comments