From 053e368a4cc82cceb708cec643341f7bc1355e5d Mon Sep 17 00:00:00 2001 From: Kunal Kamble Date: Mon, 13 Apr 2020 15:37:14 -0400 Subject: [PATCH] Add missing parameter to setup method in firestore-get node --- firestore/firestore-get.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firestore/firestore-get.js b/firestore/firestore-get.js index d57e3df..7152017 100644 --- a/firestore/firestore-get.js +++ b/firestore/firestore-get.js @@ -12,7 +12,7 @@ module.exports = function(RED) { this.admin = c.admin } - const setup = ()=>{ + const setup = (path)=>{ if(unsub){ unsub() } @@ -48,4 +48,4 @@ module.exports = function(RED) { } RED.nodes.registerType("firestore-get", FirebaseAdmin); -} \ No newline at end of file +}