JS: Add query ID to some alerts

This commit is contained in:
Asger F
2025-02-12 12:40:27 +01:00
parent 86932c51bc
commit 0453ded338
8 changed files with 87 additions and 87 deletions

View File

@@ -29,12 +29,12 @@ fs.exists(fileName, function (exists) {
res.setEncoding('utf8');
});
req.write(postData); // $ Alert - write data from file to request body
req.end();
req.write(postData); // $ Alert[js/file-access-to-http] - write data from file to request body
req.end();
});
fs.close(fd);
});
});
}
});
});