fix spelling error
This commit is contained in:
parent
725ee609dd
commit
dd28859348
@ -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') {
|
||||
|
@ -1,12 +1,12 @@
|
||||
import * as http from 'node:http';
|
||||
import { EventEmitter } from 'events';
|
||||
import { ParsedUrlQuery } from 'querystring';
|
||||
import * as websocket from 'websocket';
|
||||
|
||||
import MainStreamConnection from './stream/index.js';
|
||||
import { ParsedUrlQuery } from 'querystring';
|
||||
import authenticate from './authenticate.js';
|
||||
import { EventEmitter } from 'events';
|
||||
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';
|
||||
|
||||
export const initializeStreamingServer = (server: http.Server) => {
|
||||
// Init websocket server
|
||||
|
@ -1,14 +1,14 @@
|
||||
import { CacheableLocalUser, CacheableUser, ILocalUser, User } 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 New Issue
Block a user