Fixed error handling!

This commit is contained in:
2024-02-23 18:42:51 -07:00
parent e90e4b6a0f
commit 0c236f1da3
4 changed files with 12 additions and 8 deletions

View File

@ -28,7 +28,7 @@ func Ask(ctx context.Context, data cmdroute.CommandData) *api.InteractionRespons
}
if err := data.Options.Unmarshal(&options); err != nil {
lib.CancelCooldown(data.Event.User.ID.String(), "ask")
lib.CancelCooldown(data.Event.Member.User.ID.String(), "ask")
return lib.ErrorResponse(err)
}
@ -36,7 +36,7 @@ func Ask(ctx context.Context, data cmdroute.CommandData) *api.InteractionRespons
if err != nil {
fmt.Printf("ChatCompletion error: %v\n", err)
lib.CancelCooldown(data.Event.User.ID.String(), "ask")
lib.CancelCooldown(data.Event.Member.User.ID.String(), "ask")
return &api.InteractionResponseData{
Content: option.NewNullableString("ChatCompletion Error!"),
AllowedMentions: &api.AllowedMentions{},

View File

@ -27,7 +27,7 @@ func Pic(ctx context.Context, data cmdroute.CommandData) *api.InteractionRespons
}
if err := data.Options.Unmarshal(&options); err != nil {
lib.CancelCooldown(data.Event.User.ID.String(), "pic")
lib.CancelCooldown(data.Event.Member.User.ID.String(), "pic")
return lib.ErrorResponse(err)
}
@ -40,7 +40,7 @@ func Pic(ctx context.Context, data cmdroute.CommandData) *api.InteractionRespons
imageFile, err := lib.OpenAIImageGeneration(options.Prompt, filename)
if err != nil {
lib.CancelCooldown(data.Event.User.ID.String(), "pic")
lib.CancelCooldown(data.Event.Member.User.ID.String(), "pic")
return lib.ErrorResponse(err)
}