forked from OpenWF/SpaceNinjaServer
		
	fix: login failure on U31 the new war & U30.5 sisters of parvos (#1943)
Reviewed-on: OpenWF/SpaceNinjaServer#1943 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
This commit is contained in:
		
							parent
							
								
									8eefd67d79
								
							
						
					
					
						commit
						12b6e5d16e
					
				@ -99,7 +99,6 @@ const createLoginResponse = (myAddress: string, account: IDatabaseAccountJson, b
 | 
			
		||||
        id: account.id,
 | 
			
		||||
        DisplayName: account.DisplayName,
 | 
			
		||||
        CountryCode: account.CountryCode,
 | 
			
		||||
        ClientType: account.ClientType,
 | 
			
		||||
        ForceLogoutVersion: account.ForceLogoutVersion,
 | 
			
		||||
        AmazonAuthToken: account.AmazonAuthToken,
 | 
			
		||||
        AmazonRefreshToken: account.AmazonRefreshToken,
 | 
			
		||||
@ -112,6 +111,8 @@ const createLoginResponse = (myAddress: string, account: IDatabaseAccountJson, b
 | 
			
		||||
        DTLS: 99,
 | 
			
		||||
        BuildLabel: buildLabel
 | 
			
		||||
    };
 | 
			
		||||
    if (version_compare(buildLabel, "2022.04.29.12.53") >= 0) {
 | 
			
		||||
        resp.ClientType = account.ClientType;
 | 
			
		||||
        if (version_compare(buildLabel, "2022.09.06.19.24") >= 0) {
 | 
			
		||||
            resp.CrossPlatformAllowed = account.CrossPlatformAllowed;
 | 
			
		||||
            resp.HUB = `https://${myAddress}/api/`;
 | 
			
		||||
@ -120,5 +121,6 @@ const createLoginResponse = (myAddress: string, account: IDatabaseAccountJson, b
 | 
			
		||||
                resp.platformCDNs = [`https://${myAddress}/`];
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
    return resp;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
@ -3,7 +3,7 @@ import { Types } from "mongoose";
 | 
			
		||||
export interface IAccountAndLoginResponseCommons {
 | 
			
		||||
    DisplayName: string;
 | 
			
		||||
    CountryCode: string;
 | 
			
		||||
    ClientType: string;
 | 
			
		||||
    ClientType?: string;
 | 
			
		||||
    CrossPlatformAllowed?: boolean;
 | 
			
		||||
    ForceLogoutVersion: number;
 | 
			
		||||
    AmazonAuthToken?: string;
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user