mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-21 18:50:47 +03:00
Fix C++20 compatibility
This commit is contained in:
parent
bd9946bff9
commit
9b2a98b595
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ ChatPage::ChatPage(QSharedPointer<UserSettings> userSettings, QObject *parent)
|
|||
});
|
||||
|
||||
connectivityTimer_.setInterval(CHECK_CONNECTIVITY_INTERVAL);
|
||||
connect(&connectivityTimer_, &QTimer::timeout, this, [=]() {
|
||||
connect(&connectivityTimer_, &QTimer::timeout, this, [this]() {
|
||||
if (http::client()->access_token().empty()) {
|
||||
connectivityTimer_.stop();
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue