Skip to content
Snippets Groups Projects
Verified Commit 9b2a98b5 authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Fix C++20 compatibility

parent bd9946bf
No related branches found
No related tags found
No related merge requests found
Pipeline #3221 failed
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment