1
0

status string inverted logic fixed about status

* related to commit 90573105519953847be513068c1f05f1a1771d7c
This commit is contained in:
mckaygerhard 2024-06-03 00:47:44 -04:00
parent 5db6593abd
commit d9bdbbd307
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ stages:
- make install
artifacts:
when: on_success
expire_in: 1d
expire_in: 1y
paths:
- artifact/*

View File

@ -3304,7 +3304,7 @@ std::string Server::getStatusString()
os << "# Server: ";
// Version
if (!g_settings->getBool("announce_mt_id"))
if (g_settings->getBool("announce_mt_id"))
os << "version=" << "0.4.16";
else
os << "version=" << g_version_string;