From 27677adbe8e01f5a829a0cba61efdf660a1dcc0e Mon Sep 17 00:00:00 2001 From: n1474335 Date: Mon, 1 Apr 2019 00:29:10 +0100 Subject: [PATCH] Fixed option default --- src/web/SeasonalWaiter.mjs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/web/SeasonalWaiter.mjs b/src/web/SeasonalWaiter.mjs index 12c95a56..f894e951 100755 --- a/src/web/SeasonalWaiter.mjs +++ b/src/web/SeasonalWaiter.mjs @@ -81,6 +81,10 @@ class SeasonalWaiter { `; optionsBody.appendChild(optionItem); + if (!this.app.options.hasOwnProperty("clippy")) { + this.app.options.clippy = true; + } + this.manager.options.load(); }