WebSocket update
Some checks failed
Setup testing environment and test the code / build (push) Failing after 1m6s

This commit is contained in:
2026-04-05 15:57:22 +02:00
parent f6b5d12914
commit f4bb1d91c2

View File

@@ -23,7 +23,7 @@ const getEnv = (key: string): string | undefined => {
const DefaultEnvironment: SDKConfig = {
apiUrl: getEnv('API_URL') ?? "https://api.chatenium.hu",
cdnUrl: getEnv('CDN_URL') ?? "https://cdn.chatenium.hu",
cdnUrl: getEnv('WS_URL') ?? "wss://api.chatenium.hu",
wsUrl: getEnv('WS_URL') ?? "wss://api.chatenium.hu",
};
let currentConfig: SDKConfig = { ...DefaultEnvironment };