From 05a95485f700f4bece45f1d2a94a1a0c39e6a4ee Mon Sep 17 00:00:00 2001 From: Rafael Taranto Date: Wed, 20 Nov 2019 17:56:16 +0000 Subject: [PATCH] fix: pass down settings to coinatmradar module --- lib/poller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/poller.js b/lib/poller.js index 1e13f28c..22b15b27 100644 --- a/lib/poller.js +++ b/lib/poller.js @@ -62,7 +62,7 @@ function updateCoinAtmRadar () { const config = settings().config return pi().getRawRates() - .then(rates => coinAtmRadar.update({ rates, config })) + .then(rates => coinAtmRadar.update({ rates, config }, settings())) } function start (__settings) {