Don't handle commented state in pull_request_review

This commit is contained in:
jesopo 2019-03-19 16:10:59 +00:00
parent 76ae55499b
commit e6a32a8bb9

View file

@ -536,6 +536,9 @@ class Module(ModuleManager.BaseModule):
return []
state = data["review"]["state"]
if state == "commented":
return []
number = utils.irc.color("#%s" % data["pull_request"]["number"],
COLOR_ID)
action = data["action"]