From 6c91c1ac688fb3de2b86884b0d2dbbc45bf85094 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Katzer?= Date: Mon, 11 Feb 2019 15:02:00 +0100 Subject: [PATCH] Fix linter warning --- src/windows/PrinterProxy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/windows/PrinterProxy.js b/src/windows/PrinterProxy.js index c42e8de..e0fa74c 100644 --- a/src/windows/PrinterProxy.js +++ b/src/windows/PrinterProxy.js @@ -151,7 +151,7 @@ exports.onPrintTaskRequested = function (event) { } catch (e) {} task.oncompleted = function (e) { - exports._func(e.detail[0].completion == 3); + exports._func(e.detail[0].completion === 3); }; };