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

Commit

Permalink
Merge pull request #35 from infOpen/fix_hipchat_idempotence
Browse files Browse the repository at this point in the history
Fix Hipchat notification idempotence problem
  • Loading branch information
achaussier committed Mar 13, 2016
2 parents 0ab356d + ea0e291 commit 68a08c4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def Boolean check_color(NotificationConfig notification, Map data) {
def String new_color = data['color']

// Check if setting need update
return (cur_color != new_color)
return (cur_color.toLowerCase() != new_color.toLowerCase())
}
catch(Exception e) {
throw new Exception(
Expand Down

0 comments on commit 68a08c4

Please sign in to comment.