mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Fix ping payload not breaking portable mode (#1516)
This payload was initialized before main was called, so before the QApplication was initialized. This broke our portable checker Fixes #1481
This commit is contained in:
parent
4b1202437b
commit
a078d116d2
|
@ -6,8 +6,7 @@ namespace chatterino {
|
|||
|
||||
namespace {
|
||||
|
||||
const auto payload =
|
||||
QString("chatterino/%1").arg(Version::instance().version());
|
||||
const auto payload = QString("chatterino/" CHATTERINO_VERSION);
|
||||
|
||||
} // namespace
|
||||
|
||||
|
|
Loading…
Reference in a new issue