#5707 Don't send update notifications for new users
This commit is contained in:
parent
3e9815dfdd
commit
2f2dd7742f
|
@ -72,6 +72,11 @@ LicenseManager::setSerialKey(QString serialKeyString, bool acceptExpired)
|
||||||
|
|
||||||
void
|
void
|
||||||
LicenseManager::notifyUpdate(QString fromVersion, QString toVersion) {
|
LicenseManager::notifyUpdate(QString fromVersion, QString toVersion) {
|
||||||
|
if ((fromVersion == "Unknown")
|
||||||
|
&& (m_serialKey == SerialKey(kUnregistered))) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
ActivationNotifier* notifier = new ActivationNotifier();
|
ActivationNotifier* notifier = new ActivationNotifier();
|
||||||
notifier->setUpdateInfo (fromVersion, toVersion,
|
notifier->setUpdateInfo (fromVersion, toVersion,
|
||||||
QString::fromStdString(m_serialKey.toString()));
|
QString::fromStdString(m_serialKey.toString()));
|
||||||
|
|
Loading…
Reference in New Issue