We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50f7f4d commit c70e58bCopy full SHA for c70e58b
scripts/status.js
@@ -181,7 +181,7 @@ module.exports = robot => {
181
if (message.indexOf("🔴 Our graph latest block") != -1 && !ongoingGraphIncident) {
182
ongoingGraphIncident = true;
183
channel.send("There appears to be an incident with the graph. \n" + message)
184
- } else if (message.indexOf("🔴") != -1 && !ongoingGenericIncident){
+ } else if (message.indexOf("🔴") != -1 && !ongoingGenericIncident && !ongoingGraphIncident){
185
ongoingGenericIncident = true;
186
channel.send("There appears to be a generic incident. \n" + message)
187
}
0 commit comments