fixed issue caused bay spaces in a app ID
This commit is contained in:
parent
da514e9a45
commit
bb98537310
|
@ -32,7 +32,7 @@ bool SnoreToast::init(SnoreCore *snore)
|
|||
qDebug() << "SnoreToast does not work on windows" << QSysInfo::windowsVersion();
|
||||
return false;
|
||||
}
|
||||
m_appID = QString("%1.%2.SnoreToast").arg(qApp->organizationName(), qApp->applicationName());
|
||||
m_appID = QString("%1.%2.SnoreToast").arg(qApp->organizationName(), qApp->applicationName()).replace(" ","");
|
||||
|
||||
QProcess *p = new QProcess(this);
|
||||
p->setReadChannelMode(QProcess::MergedChannels);
|
||||
|
|
Loading…
Reference in New Issue