Skip to content

Conversation

@iseunghan
Copy link
Contributor

hello, i find a typo in securing-node-red

I think it's a typo below :

https: function() {
    return new Promise((resolve, reject) => {
        var key, cert;
        // Do some work to obtain valid certificates
        // ...
        resolve({
            key: key
            cert: ccert    // * type
        })
    });
}

and then i correct a type:

https: function() {
    return new Promise((resolve, reject) => {
        var key, cert;
        // Do some work to obtain valid certificates
        // ...
        resolve({
            key: key
            cert: cert    // * correct a type
        })
    });
}

@linux-foundation-easycla
Copy link

linux-foundation-easycla bot commented Mar 22, 2022

CLA Signed

The committers listed above are authorized under a signed CLA.

  • ✅ login: iseunghan / name: Seunghan Lee (6434e7e)

@knolleary knolleary merged commit 7ee3452 into node-red:master Jul 14, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants