Skip to content

Commit d75a49c

Browse files
committed
One const too much
1 parent a6a78b5 commit d75a49c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ function send2wavelog(o_cfg,adif, dryrun = false) {
327327
const body = [];
328328
res.on('data', (chunk) => body.push(chunk));
329329
res.on('end', () => {
330-
const resString = Buffer.concat(body).toString();
330+
let resString = Buffer.concat(body).toString();
331331
if (rej) {
332332
if (resString.indexOf('html>')>0) {
333333
resString='{"status":"failed","reason":"wrong URL"}';

0 commit comments

Comments
 (0)