feat(*): Improve comment clarity

This commit is contained in:
2020-10-26 22:24:23 +00:00
parent 22529d38a0
commit 4035abf933
+1 -1
View File
@@ -150,7 +150,7 @@ function makeTempChannel(message, adventureMessage) {
})
.catch(logger.error);
// Delete the channel after 20 seconds
// Delete the channel after the configured amount of minutes
setTimeout(function(){ deleteChannel(message, createdChannelId); }, (config.channeldeletetimeinminutes * 1000 * 60) );
}