fix typo in error message

This commit is contained in:
HayWo 2020-05-29 13:06:15 +02:00 committed by GitHub
parent 0255283d5a
commit 3552242a66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -192,7 +192,7 @@ export class Skype {
const MINUTE = 60000; const MINUTE = 60000;
client.on("error", async (err: Error) => { client.on("error", async (err: Error) => {
if (p.restarting) { if (p.restarting) {
await this.puppet.sendStatusMessage(puppetId, "Got an error, but am already restrting, ignoring...."); await this.puppet.sendStatusMessage(puppetId, "Got an error, but am already restarting, ignoring....");
return; return;
} }
p.restarting = true; p.restarting = true;