diff --git a/src/common/qq-basic-info.ts b/src/common/qq-basic-info.ts index 7246935d..cc9a9482 100644 --- a/src/common/qq-basic-info.ts +++ b/src/common/qq-basic-info.ts @@ -57,9 +57,9 @@ export class QQBasicInfoWrapper { //此方法不要直接使用 getQUAFallback() { const platformMapping: Partial> = { - win32: `V1_WIN_${this.getFullQQVesion()}_${this.getQQBuildStr()}_GW_B`, - darwin: `V1_MAC_${this.getFullQQVesion()}_${this.getQQBuildStr()}_GW_B`, - linux: `V1_LNX_${this.getFullQQVesion()}_${this.getQQBuildStr()}_GW_B`, + win32: `V1_WIN_${this.getFullQQVersion()}_${this.getQQBuildStr()}_GW_B`, + darwin: `V1_MAC_${this.getFullQQVersion()}_${this.getQQBuildStr()}_GW_B`, + linux: `V1_LNX_${this.getFullQQVersion()}_${this.getQQBuildStr()}_GW_B`, }; return platformMapping[systemPlatform] ?? (platformMapping.win32)!; } @@ -76,7 +76,7 @@ export class QQBasicInfoWrapper { getAppidV2(): { appid: string; qua: string } { // 通过已有表 性能好 const appidTbale = AppidTable as unknown as QQAppidTableType; - const fullVersion = this.getFullQQVesion(); + const fullVersion = this.getFullQQVersion(); if (fullVersion) { const data = appidTbale[fullVersion]; if (data) {