Remove build suffix from version when reporting to sentry

This commit is contained in:
Dean Herbert
2022-05-11 10:38:35 +09:00
parent c61d0ff80a
commit 9dce329e99
2 changed files with 4 additions and 2 deletions

View File

@ -34,7 +34,7 @@ namespace osu.Game.Utils
options.AutoSessionTracking = true;
options.IsEnvironmentUser = false;
options.Release = game.Version;
options.Release = game.Version.Replace($@"-{OsuGameBase.BUILD_SUFFIX}", string.Empty);
});
Logger.NewEntry += processLogEntry;