From e9d177111444392f630ba8831b793d32c507399b Mon Sep 17 00:00:00 2001 From: David Rosca Date: Tue, 27 Dec 2016 18:05:45 +0100 Subject: [PATCH] ProfileManager: Only warn when using profile from QupZilla 1.x --- src/lib/app/profilemanager.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib/app/profilemanager.cpp b/src/lib/app/profilemanager.cpp index d456b9695..ba6ab8c26 100644 --- a/src/lib/app/profilemanager.cpp +++ b/src/lib/app/profilemanager.cpp @@ -188,8 +188,7 @@ void ProfileManager::updateProfile(const QString ¤t, const QString &profil Updater::Version prof(profile); if (prof < Updater::Version("1.9.0")) { - std::cout << "QupZilla: Incompatible profile version detected (" << qPrintable(profile) << "), overwriting profile data..." << std::endl; - copyDataToProfile(); + std::cout << "QupZilla: Using profile from QupZilla " << qPrintable(profile) << " is not supported!" << std::endl; return; }