Fix another unused lambda capture

This commit is contained in:
baldurk
2019-07-31 20:18:41 +01:00
parent f7d988b9cf
commit 006ba0e103
+1 -1
View File
@@ -610,7 +610,7 @@ void RemoteManager::on_connect_clicked()
}
// kick off a thread to check the status
LambdaThread *th = new LambdaThread([ this, h = host ]() {
LambdaThread *th = new LambdaThread([h = host]() {
RemoteHost host = h;
host.CheckStatus();
});