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 3a8ae30 commit a2c0905Copy full SHA for a2c0905
src/commands/handler.js
@@ -38,7 +38,7 @@ module.exports = class IrcCommandHandler extends EventEmitter {
38
39
// Batched commands will be collected and executed as a transaction
40
const batch_id = irc_command.getTag('batch');
41
- if (batch_id) {
+ if (batch_id && !(irc_command.command === 'BATCH' && irc_command.params[0].charAt(0) === '+')) {
42
const cache_key = 'batch.' + batch_id;
43
if (this.hasCache(cache_key)) {
44
const cache = this.cache(cache_key);
0 commit comments