diff --git a/src/services/configService.ts b/src/services/configService.ts index d046a1ee9..bb4d5c968 100644 --- a/src/services/configService.ts +++ b/src/services/configService.ts @@ -33,9 +33,9 @@ interface IConfig { httpPort?: number; httpsPort?: number; myIrcAddresses?: string[]; - platformCDNs: string[]; - hubAddress: string; - NRS: string[]; + platformCDNs?: string[]; + hubAddress?: string; + NRS?: string[]; administratorNames?: string[] | string; autoCreateAccount?: boolean; skipTutorial?: boolean; diff --git a/src/types/loginTypes.ts b/src/types/loginTypes.ts index 728fde528..687d611e0 100644 --- a/src/types/loginTypes.ts +++ b/src/types/loginTypes.ts @@ -39,11 +39,11 @@ export interface ILoginResponse extends IAccountAndLoginResponseCommons { Groups: IGroup[]; BuildLabel: string; MatchmakingBuildId: string; - platformCDNs: string[]; - NRS: string[]; + platformCDNs?: string[]; + NRS?: string[]; DTLS: number; IRC: string[]; - HUB: string; + HUB?: string; } export interface IGroup {