diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 78d65048bd..678c7ab647 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -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) {