restore functionality of shouldSkipVersion

This commit is contained in:
Stephen Birarda 2014-01-22 14:25:06 -08:00
parent e01f317cba
commit 6937ce035a

View file

@ -4415,8 +4415,7 @@ bool Application::shouldSkipVersion(QString latestVersion) {
QFile skipFile(SKIP_FILENAME);
skipFile.open(QIODevice::ReadWrite);
QString skipVersion(skipFile.readAll());
// return (skipVersion == latestVersion || applicationVersion() == "dev");
return false;
return (skipVersion == latestVersion || applicationVersion() == "dev");
}
void Application::skipVersion(QString latestVersion) {