diff --git a/src/mirall/application.cpp b/src/mirall/application.cpp index d8514bfeda..fc4fdfdbb5 100644 --- a/src/mirall/application.cpp +++ b/src/mirall/application.cpp @@ -223,6 +223,13 @@ void Application::slotOwnCloudFound( const QString& url, const QString& versionS disconnect( ownCloudInfo::instance(),SIGNAL(noOwncloudFound(QNetworkReply*)), this, SLOT(slotNoOwnCloudFound(QNetworkReply*))); + if( version.startsWith("4.0") ) { + QMessageBox::warning(0, tr("ownCloud Server Mismatch"), + tr("
The configured server for this client is too old.
" + "Please update to the latest ownCloud server and restart the client.
")); + return; + } + QTimer::singleShot( 0, this, SLOT( slotCheckAuthentication() )); }