Adharsh M

Results 4 comments of Adharsh M

It also breaks for unicode characters, An error message like this isn't very helpful ``` FATAL Confluence API returned unexpected status: 400 Bad Request, output: "" ``` I think its...

I'm also facing the issue, only 2.3 is available in cdn.js when i searched.

@aeneasr Yeah, I'm looking for a way to be able to sign up without logging out. Basically I'm trying to have a system like google accounts where you can log...

I ended up using this utility ```go func ClearCookies(c *fiber.Ctx, key ...string) { for i := range key { c.Cookie(&fiber.Cookie{ Name: key[i], Expires: time.Now().Add(-time.Hour * 24), Value: "", }) }...