From d93ef10f26c54d56820d37b67a25d0bebc8b320d Mon Sep 17 00:00:00 2001 From: stephenPspackman <93166870+stephenPspackman@users.noreply.github.com> Date: Sun, 12 Dec 2021 15:08:55 -0800 Subject: [PATCH] Update app.js Oops, shouldn't say return on a setter. --- apps/pooqroman/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/pooqroman/app.js b/apps/pooqroman/app.js index 4d5285eae..d59d4ef6c 100644 --- a/apps/pooqroman/app.js +++ b/apps/pooqroman/app.js @@ -75,9 +75,9 @@ class Options { Object.defineProperty(this, k, { get: () => this.backing[k], set: v => { + this.backing[k] = v; // Ten second writeback delay, since the user will roll values up and down. this.writeBack(10000); - return this.backing[k] = v; } }); }