From 800199291fd7efc9d4c6d53de9319d2d881ff6de Mon Sep 17 00:00:00 2001 From: Alezia Kurdis <60075796+AleziaKurdis@users.noreply.github.com> Date: Thu, 14 Jul 2022 21:28:04 -0400 Subject: [PATCH] Code adjustments --- applications/lightBulb/app-lightBulb.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/lightBulb/app-lightBulb.js b/applications/lightBulb/app-lightBulb.js index e52b6f1..fee264b 100644 --- a/applications/lightBulb/app-lightBulb.js +++ b/applications/lightBulb/app-lightBulb.js @@ -83,7 +83,7 @@ } function onScreenChanged(type, url) { - if (type == "Web" && url.indexOf(APP_URL) != -1) { + if (type === "Web" && url.indexOf(APP_URL) !== -1) { appStatus = true; } else { appStatus = false;