Procházet zdrojové kódy

fix(examples/avatar): parameters for UserUpdate

nitroflap před 3 roky
rodič
revize
7044ee62cb
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      examples/avatar/main.go

+ 1 - 1
examples/avatar/main.go

@@ -82,7 +82,7 @@ func main() {
 	// Now lets format our base64 image into the proper format Discord wants
 	// Now lets format our base64 image into the proper format Discord wants
 	// and then call UserUpdate to set it as our user's Avatar.
 	// and then call UserUpdate to set it as our user's Avatar.
 	avatar := fmt.Sprintf("data:%s;base64,%s", contentType, base64img)
 	avatar := fmt.Sprintf("data:%s;base64,%s", contentType, base64img)
-	_, err = dg.UserUpdate("", "", "", avatar, "")
+	_, err = dg.UserUpdate("", avatar)
 	if err != nil {
 	if err != nil {
 		fmt.Println(err)
 		fmt.Println(err)
 	}
 	}