#5707 Add newline to update notification string

This commit is contained in:
Andrew Nelless 2016-10-28 16:34:35 +01:00
parent ef9842c819
commit 3e9815dfdd
1 changed files with 1 additions and 0 deletions

View File

@ -67,6 +67,7 @@ QString CoreInterface::notifyUpdate (QString const& fromVersion,
QString const& serialKey) {
QStringList args("--notify-update");
QString input(fromVersion + ":" + toVersion + ":" + serialKey);
input.append("\n");
return run(args, input);
}