fix: login failure on U15
All checks were successful
Build / build (push) Successful in 1m38s
Build / build (pull_request) Successful in 57s

This commit is contained in:
Sainan 2025-05-06 11:31:36 +02:00
parent f6cbc02c47
commit bab04ed020

View File

@ -107,9 +107,11 @@ const createLoginResponse = (myAddress: string, account: IDatabaseAccountJson, b
AmazonAuthToken: account.AmazonAuthToken,
AmazonRefreshToken: account.AmazonRefreshToken,
Nonce: account.Nonce,
NRS: config.NRS,
BuildLabel: buildLabel
};
if (version_compare(buildLabel, "2015.02.13.10.41") >= 0) {
resp.NRS = config.NRS;
}
if (version_compare(buildLabel, "2015.05.14.16.29") >= 0) {
// U17 and up
resp.IRC = config.myIrcAddresses ?? [myAddress];