Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Suppress validation warning #3505

Merged
merged 3 commits into from
Dec 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tools/dicom-web-electron/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ async function createWindow() {
win.loadFile(path.join(__dirname, "index.html"));

// Used to allow self signed certificates
// CodeQL [SM03616]: Suppress warning for disabling certificate validation
const httpsAgent = new https.Agent({ rejectUnauthorized: false });

// Set the maximum content length size in bytes and megabytes
Expand Down Expand Up @@ -148,4 +149,4 @@ async function createWindow() {
})
}

app.on("ready", createWindow);
app.on("ready", createWindow);
Loading