*Wrong variable used
This commit is contained in:
parent
31a785b13e
commit
4b6e1d32f5
|
@ -35,7 +35,7 @@ export function setSsl(
|
|||
key: IndependentFileSmall | Uint8Array
|
||||
): void {
|
||||
cert = (cert as IndependentFileSmall)?.fileData || cert;
|
||||
key = (key as IndependentFileSmall)?.fileData || cert;
|
||||
key = (key as IndependentFileSmall)?.fileData || key;
|
||||
sslObject.cert = cert as Uint8Array;
|
||||
sslObject.key = key as Uint8Array;
|
||||
setSslContext(
|
||||
|
|
Loading…
Reference in New Issue