From da9240e3ffe859be0eba606621fe4d1dd575e053 Mon Sep 17 00:00:00 2001 From: bluesaxman Date: Thu, 10 Feb 2022 09:08:21 -0700 Subject: [PATCH] minor refrence error fixed, maybe fouth times the charm... --- libs/bluepixle.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/bluepixle.js b/libs/bluepixle.js index 6444d87..404948a 100644 --- a/libs/bluepixle.js +++ b/libs/bluepixle.js @@ -102,7 +102,7 @@ class container { addContainer(myContainer) { if (myContainer instanceof container) { - this.containers.push(container); + this.containers.push(myContainer); } else { throw new TypeError("addContainer Method must be given a container object"); }