From 103c7eb11e5df3b9569a18b845b55a9b76f36365 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Tue, 17 Aug 2021 17:51:50 +0200 Subject: [PATCH] fix(core): update --- ts/smartpuppeteer.classes.incognitobrowser.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/smartpuppeteer.classes.incognitobrowser.ts b/ts/smartpuppeteer.classes.incognitobrowser.ts index 9fa093c..eaf43af 100644 --- a/ts/smartpuppeteer.classes.incognitobrowser.ts +++ b/ts/smartpuppeteer.classes.incognitobrowser.ts @@ -28,7 +28,7 @@ export class IncognitoBrowser { */ public async stop() { this.status = 'stopped'; - plugins.treeKill(this.browser.process().pid); + plugins.treeKill(this.browser.process().pid, 'SIGKILL'); await this.browser.close(); }