From 7a0b821be4a6e33a797a7e5c85a6a574d2e0cc60 Mon Sep 17 00:00:00 2001 From: Tim Shannon Date: Mon, 25 Apr 2016 16:56:48 +0000 Subject: [PATCH] Another small change in the same code --- web/js/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/js/index.js b/web/js/index.js index e7d04a7..ff07593 100644 --- a/web/js/index.js +++ b/web/js/index.js @@ -171,7 +171,7 @@ Ractive.DEBUG = false; //statuses if (project.stage != "waiting") { project.status = project.stage; - } else if(!project.lastLog) { + } else if(!project.lastLog || !project.lastLog.version) { project.status = "waiting"; } else if (project.lastLog.version.trim() == project.releaseVersion.trim()) { project.status = "Successfully Released";