From ca1d6fc591834968928ead51a8ca9915cda28b24 Mon Sep 17 00:00:00 2001 From: Joerg Date: Wed, 3 Jul 2024 08:51:00 +0200 Subject: [PATCH] Added lazy check of tls-cert to allow selfsigned instances --- main.js | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/main.js b/main.js index 743213d..107618d 100644 --- a/main.js +++ b/main.js @@ -159,6 +159,7 @@ function send2wavelog(o_cfg,adif, dryrun = false) { var options = { method: 'POST', timeout: 5000, + rejectUnauthorized: false, headers: { 'Content-Type': 'application/json', 'User-Agent': 'SW2WL_v' + app.getVersion(), diff --git a/package.json b/package.json index 6692f6a..fe82400 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "Gateway for connecting WSJT-* and FLRig to Wavelog", "keywords": [], "main": "./main.js", - "version": "1.0.15", + "version": "1.0.16", "author": "DJ7NT", "scripts": { "start": "electron-forge start",