chore: cleanup config #979

Merged
OrdisPrime merged 2 commits from cleanupconfig into main 2025-02-20 06:16:41 -08:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 72c499ca48 - Show all commits

View File

@ -84,11 +84,11 @@ const createLoginResponse = (account: IDatabaseAccountJson, buildLabel: string):
TrackedSettings: account.TrackedSettings,
Nonce: account.Nonce,
Groups: [],
IRC: config.myIrcAddresses ?? [config.myAddress],
platformCDNs: config.platformCDNs,
HUB: config.hubAddress,
NRS: config.NRS,
DTLS: 99,
IRC: config.myIrcAddresses ?? [config.myAddress],
BuildLabel: buildLabel,
MatchmakingBuildId: buildConfig.matchmakingBuildId
};

View File

@ -33,8 +33,8 @@ interface IConfig {
httpPort?: number;
httpsPort?: number;
myIrcAddresses?: string[];
hubAddress: string;
platformCDNs: string[];
hubAddress: string;
NRS: string[];
administratorNames?: string[] | string;
autoCreateAccount?: boolean;