We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28ddb50 commit dbdc9b3Copy full SHA for dbdc9b3
createChannel.js
@@ -22,7 +22,7 @@ async function run() {
22
}
23
r1.question('public or private? ', async function(status) {
24
console.log('status', status, typeof status, status.toLowerCase());
25
- if (status.toLowerCase == 'public') {
+ if (status.toLowerCase() == 'public') {
26
status = false;
27
} else if (status.toLowerCase() == 'private') {
28
status = true;
0 commit comments