From f020c7dcfab2d7a52ebaefb911baca0c5cd01340 Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Tue, 6 Jun 2023 15:04:19 +0200 Subject: [PATCH] Update integrationpluginevbox.cpp --- evbox/integrationpluginevbox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evbox/integrationpluginevbox.cpp b/evbox/integrationpluginevbox.cpp index 898e3a01..de807a91 100644 --- a/evbox/integrationpluginevbox.cpp +++ b/evbox/integrationpluginevbox.cpp @@ -141,7 +141,7 @@ void IntegrationPluginEVBox::setupThing(ThingSetupInfo *info) // Setup routine: Try to set the max charging current to 6A and see if we get a valid answer port->sendCommand(EVBoxPort::Command68, 60, 6, serialNumber); connect(port, &EVBoxPort::closed, info, [info](){ - info->finish(Thing::ThingErrorHardwareFailure, QT_TR_NOOP("The EVBox is has closed the connection.")); + info->finish(Thing::ThingErrorHardwareFailure, QT_TR_NOOP("The EVBox has closed the connection.")); }); connect(port, &EVBoxPort::responseReceived, info, [info, serialNumber](EVBoxPort::Command /*command*/, const QString &serial){ if (serial == serialNumber) {