Skip to content

Commit

Permalink
Strip space from the version name used for telemetry
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrio95 authored and anatoly-os committed Jan 18, 2020
1 parent e5f54ca commit 4cd87df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mscore/musescore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7202,7 +7202,8 @@ void MuseScore::updateUiStyleAndTheme()
QString MuseScore::fullVersion()
{
QString version(VERSION);
const QString versionLabel(VERSION_LABEL);
QString versionLabel(VERSION_LABEL);
versionLabel = versionLabel.replace(' ', "");
if (!versionLabel.isEmpty())
version.append("-").append(versionLabel);
return version;
Expand Down

0 comments on commit 4cd87df

Please sign in to comment.