Skip to content

Commit 4cd87df

Browse files
dmitrio95anatoly-os
authored andcommitted
Strip space from the version name used for telemetry
1 parent e5f54ca commit 4cd87df

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mscore/musescore.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7202,7 +7202,8 @@ void MuseScore::updateUiStyleAndTheme()
72027202
QString MuseScore::fullVersion()
72037203
{
72047204
QString version(VERSION);
7205-
const QString versionLabel(VERSION_LABEL);
7205+
QString versionLabel(VERSION_LABEL);
7206+
versionLabel = versionLabel.replace(' ', "");
72067207
if (!versionLabel.isEmpty())
72077208
version.append("-").append(versionLabel);
72087209
return version;

0 commit comments

Comments
 (0)