BigW Consortium Gitlab

Commit a8e94e24 by Jacob Schatz Committed by DJ Mountney

Merge branch 'build-notification-null-check' into 'master'

Stop CI notification showing when status is nil See merge request !10044
parent 3c68d87f
......@@ -175,7 +175,7 @@ require('./smart_interval');
_this.opts.ci_sha = data.sha;
_this.updateCommitUrls(data.sha);
}
if (showNotification) {
if (showNotification && data.status) {
status = _this.ciLabelForStatus(data.status);
if (status === "preparing") {
title = _this.opts.ci_title.preparing;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment