Browse Source

fix: rename variable

nc-fix/pubsub
mertmit 6 months ago
parent
commit
c2793f9d30
  1. 4
      packages/nocodb/src/redis/pubsub-redis.ts

4
packages/nocodb/src/redis/pubsub-redis.ts

@ -71,8 +71,8 @@ export class PubSubRedis {
await PubSubRedis.redisSubscriber.subscribe(channel); await PubSubRedis.redisSubscriber.subscribe(channel);
const onMessage = async (channel, message) => { const onMessage = async (messageChannel, message) => {
if (channel !== channel) { if (channel !== messageChannel) {
return; return;
} }

Loading…
Cancel
Save