From 4e8e6cc976f719d87200403d6d91690ce4addbe3 Mon Sep 17 00:00:00 2001
From: Alex Gaynor <alex.gaynor@gmail.com>
Date: Thu, 3 Oct 2013 19:46:20 -0700
Subject: [PATCH] Removed handling for ids of "None"

The server no longer sends them

Change-Id: Idc555754c284c2ebfc4dd5ba9fdd10f1655a7945
---
 modules/openstack_project/files/zuul/status.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/openstack_project/files/zuul/status.js b/modules/openstack_project/files/zuul/status.js
index d29e61309d..590176f5b5 100644
--- a/modules/openstack_project/files/zuul/status.js
+++ b/modules/openstack_project/files/zuul/status.js
@@ -233,7 +233,7 @@ function format_change(change, change_queue) {
     html += '<span class="project">' + change['project'] + '</span>';
     var id = change['id'];
     var url = change['url'];
-    if (id !== "None" && id !== null) {
+    if (id !== null) {
         if (id.length == 40) {
             id = id.substr(0,7);
         }