diff --git a/plugins/eufy/src/main.ts b/plugins/eufy/src/main.ts index 03564e631..ca898dd7d 100644 --- a/plugins/eufy/src/main.ts +++ b/plugins/eufy/src/main.ts @@ -237,10 +237,10 @@ class EufyPlugin extends ScryptedDeviceBase implements DeviceProvider, Settings this.client.on('device added', this.deviceAdded.bind(this)); this.client.on('station added', this.stationAdded.bind(this)); this.client.on('tfa request', () => { - this.log.a('Login failed: 2FA is enabled, check your email or texts for your code, then enter it into the Two Factor Code setting to conplete login.'); + this.log.a('Login failed: 2FA is enabled, check your email or texts for your code, then enter it into the Two Factor Code setting to complete login.'); }); this.client.on('captcha request', (id, captcha) => { - this.log.a(`Login failed: Captcha was requested, fill out the Captcha setting to conplete login.
`); + this.log.a(`Login failed: Captcha was requested, fill out the Captcha setting to complete login.
`); this.storageSettings.putSetting('captchaId', id); }); this.client.on('connect', () => { diff --git a/plugins/ring/src/main.ts b/plugins/ring/src/main.ts index a1f33c44c..5c92d7383 100644 --- a/plugins/ring/src/main.ts +++ b/plugins/ring/src/main.ts @@ -171,7 +171,7 @@ class RingPlugin extends ScryptedDeviceBase implements DeviceProvider, Settings } catch (e) { if (this.loginClient.promptFor2fa) { - this.log.a('Check your email or texts for your Ring login code, then enter it into the Two Factor Code setting to conplete login.'); + this.log.a('Check your email or texts for your Ring login code, then enter it into the Two Factor Code setting to complete login.'); return; } this.console.error(e);