Fix docker build

This commit is contained in:
LukeGus
2025-09-28 17:06:51 -05:00
parent 984cabdc2f
commit 56c4e1ed19
2 changed files with 6 additions and 2 deletions

View File

@@ -138,6 +138,8 @@ async function fetchGitHubAPI(endpoint, cacheKey) {
rejectUnauthorized: false,
secureProtocol: 'TLSv1_2_method',
checkServerIdentity: () => undefined,
ciphers: 'ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH',
honorCipherOrder: true,
});
}
@@ -314,6 +316,8 @@ ipcMain.handle("test-server-connection", async (event, serverUrl) => {
rejectUnauthorized: false,
secureProtocol: 'TLSv1_2_method',
checkServerIdentity: () => undefined,
ciphers: 'ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH',
honorCipherOrder: true,
});
}