From f83c4cea947ec95f5752929060087e44cf0dc402 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Tue, 12 May 2020 08:24:46 +0200 Subject: [PATCH] lib: add .js suffix to receiver_binary_0_3 This commit adds the '.js' suffix to the require of receiver_binary_0_3 to be consistent with the other requires statments in this file. Signed-off-by: Daniel Bevenius --- lib/bindings/http/http_receiver.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bindings/http/http_receiver.js b/lib/bindings/http/http_receiver.js index 866c7966..b287c444 100644 --- a/lib/bindings/http/http_receiver.js +++ b/lib/bindings/http/http_receiver.js @@ -1,4 +1,4 @@ -const V03Binary = require("./receiver_binary_0_3"); +const V03Binary = require("./receiver_binary_0_3.js"); const V03Structured = require("./receiver_structured_0_3.js"); const V1Binary = require("./receiver_binary_1.js"); const V1Structured = require("./receiver_structured_1.js");