diff --git a/src/common/qq-basic-info.ts b/src/common/qq-basic-info.ts index f1d4e0a6..126ec37d 100644 --- a/src/common/qq-basic-info.ts +++ b/src/common/qq-basic-info.ts @@ -85,7 +85,10 @@ export class QQBasicInfoWrapper { // 通过Major拉取 性能差 try { let majorAppid = this.getAppidV2ByMajor(fullVersion); - if (majorAppid) { return { appid: majorAppid, qua: this.getQUAFallback() }; } + if (majorAppid) { + this.context.logger.log(`[QQ版本兼容性检测] 当前版本Appid未内置 通过Major获取 为了更好的性能请尝试更新NapCat`); + return { appid: majorAppid, qua: this.getQUAFallback() }; + } } catch (error) { this.context.logger.log(`[QQ版本兼容性检测] 通过Major 获取Appid异常 请检测NapCat/QQNT是否正常`); }