Skip to content

Commit

Permalink
fix: Wii ID string formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
noahpistilli committed Dec 22, 2024
1 parent 5e3ba58 commit 8d1fa6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ func (r *Response) ReportError(err error) {

log.Printf("An error has occurred: %s", aurora.Red(err.Error()))

errorString := fmt.Sprintf("%s\nWii ID: %d\nDiscord ID: %s", err.Error(), r.GetHollywoodId(), discordId)
errorString := fmt.Sprintf("%s\nWii ID: %s\nDiscord ID: %s", err.Error(), r.GetHollywoodId(), discordId)
PostDiscordWebhook("An error has occurred in Demae Domino's!", errorString, config.ErrorWebhook, 16711711)

// With the new patches I created, we can now send the error to the channel.
Expand Down

0 comments on commit 8d1fa6f

Please sign in to comment.