Skip to content

Commit

Permalink
Change variable casing
Browse files Browse the repository at this point in the history
  • Loading branch information
Celeo committed Jul 23, 2024
1 parent 704c15e commit 4865188
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/v1/feedback/feedback.go
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,8 @@ func patchFeedback(c *gin.Context) {
}

// shouldBroadcastFeedback returns true if the feedback should be broadcast to the public on approval
func shouldBroadcastFeedback(feedback *models.Feedback, approved_silent bool) bool {
if approved_silent || feedback.Status != constants.FeedbackStatusApproved {
func shouldBroadcastFeedback(feedback *models.Feedback, approvedSilent bool) bool {
if approvedSilent || feedback.Status != constants.FeedbackStatusApproved {
return false
}

Expand Down

0 comments on commit 4865188

Please sign in to comment.