utils: make version string parsable by semver utils

This commit is contained in:
Maxim Prokhorov
2021-01-14 17:21:25 +03:00
parent df0f1a2e19
commit 252b98e0f7

View File

@@ -108,7 +108,7 @@ const String& getCoreRevision() {
const String& getVersion() {
#if defined(APP_REVISION)
static const String value(F(APP_VERSION " (" APP_REVISION ")"));
static const String value(F(APP_VERSION APP_REVISION));
#else
static const String value(F(APP_VERSION));
#endif