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";