Skip to content
This repository has been archived by the owner on Jul 19, 2022. It is now read-only.

Commit

Permalink
fix wrong type
Browse files Browse the repository at this point in the history
  • Loading branch information
betorvs committed Jul 14, 2021
1 parent 242deb6 commit 9a7d9fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion usecase/opsgenie_usecase.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func getOnCall(team string) (string, error) {
if err != nil {
return "", err
}
s += fmt.Sprintf("%s", result.OnCallParticipants)
s += fmt.Sprintf("%v", result.OnCallParticipants)

}

Expand Down

0 comments on commit 9a7d9fe

Please sign in to comment.