aboutsummaryrefslogtreecommitdiff
path: root/launcher
diff options
context:
space:
mode:
Diffstat (limited to 'launcher')
-rw-r--r--launcher/Version.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/launcher/Version.h b/launcher/Version.h
index 1f1bea83..9db03521 100644
--- a/launcher/Version.h
+++ b/launcher/Version.h
@@ -115,7 +115,8 @@ private:
} else if (numValid && other.m_isNull) {
return m_numPart != 0;
} else if (m_isNull || other.m_isNull) {
- return false;
+ if ((m_stringPart == ".") || (other.m_stringPart == ".")) return false;
+ return true;
}
if(numValid && other.numValid)
{