forked from FoundKeyGang/FoundKey
fix spelling error
This commit is contained in:
parent
a3a3cb7258
commit
e2bf2715a6
5 changed files with 9 additions and 9 deletions
|
@ -12,7 +12,7 @@ export function createConnection() {
|
|||
});
|
||||
}
|
||||
|
||||
export const subsdcriber = createConnection();
|
||||
subsdcriber.subscribe(config.host);
|
||||
export const subscriber = createConnection();
|
||||
subscriber.subscribe(config.host);
|
||||
|
||||
export const redisClient = createConnection();
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import { Antennas } from '@/models/index.js';
|
||||
import { Antenna } from '@/models/entities/antenna.js';
|
||||
import { subsdcriber } from '@/db/redis.js';
|
||||
import { subscriber } from '@/db/redis.js';
|
||||
|
||||
let antennasFetched = false;
|
||||
let antennas: Antenna[] = [];
|
||||
|
@ -14,7 +14,7 @@ export async function getAntennas() {
|
|||
return antennas;
|
||||
}
|
||||
|
||||
subsdcriber.on('message', async (_, data) => {
|
||||
subscriber.on('message', async (_, data) => {
|
||||
const obj = JSON.parse(data);
|
||||
|
||||
if (obj.channel === 'internal') {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import { Webhooks } from '@/models/index.js';
|
||||
import { Webhook } from '@/models/entities/webhook.js';
|
||||
import { subsdcriber } from '@/db/redis.js';
|
||||
import { subscriber } from '@/db/redis.js';
|
||||
|
||||
let webhooksFetched = false;
|
||||
let webhooks: Webhook[] = [];
|
||||
|
@ -16,7 +16,7 @@ export async function getActiveWebhooks() {
|
|||
return webhooks;
|
||||
}
|
||||
|
||||
subsdcriber.on('message', async (_, data) => {
|
||||
subscriber.on('message', async (_, data) => {
|
||||
const obj = JSON.parse(data);
|
||||
|
||||
if (obj.channel === 'internal') {
|
||||
|
|
|
@ -3,7 +3,7 @@ import { EventEmitter } from 'events';
|
|||
import { ParsedUrlQuery } from 'querystring';
|
||||
import * as websocket from 'websocket';
|
||||
|
||||
import { subsdcriber as redisClient } from '@/db/redis.js';
|
||||
import { subscriber as redisClient } from '@/db/redis.js';
|
||||
import { Users } from '@/models/index.js';
|
||||
import MainStreamConnection from './stream/index.js';
|
||||
import authenticate from './authenticate.js';
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
import { CacheableLocalUser, CacheableUser, ILocalUser } from '@/models/entities/user.js';
|
||||
import { Users } from '@/models/index.js';
|
||||
import { Cache } from '@/misc/cache.js';
|
||||
import { subsdcriber } from '@/db/redis.js';
|
||||
import { subscriber } from '@/db/redis.js';
|
||||
|
||||
export const userByIdCache = new Cache<CacheableUser>(Infinity);
|
||||
export const localUserByNativeTokenCache = new Cache<CacheableLocalUser | null>(Infinity);
|
||||
export const localUserByIdCache = new Cache<CacheableLocalUser>(Infinity);
|
||||
export const uriPersonCache = new Cache<CacheableUser | null>(Infinity);
|
||||
|
||||
subsdcriber.on('message', async (_, data) => {
|
||||
subscriber.on('message', async (_, data) => {
|
||||
const obj = JSON.parse(data);
|
||||
|
||||
if (obj.channel === 'internal') {
|
||||
|
|
Loading…
Reference in a new issue