🐞 fix: V1.6.1 修复提示信息不对应问题

This commit is contained in:
zhiyu1998 2024-04-01 09:28:57 +08:00
parent 38e45a57cc
commit c87fce3110

View File

@ -609,7 +609,7 @@ export class tools extends plugin {
const isOversea = await this.isOverseasServer(); const isOversea = await this.isOverseasServer();
// 如果不是海外用户且没有梯子直接返回 // 如果不是海外用户且没有梯子直接返回
if (!isOversea && !(await testProxy(this.proxyAddr, this.proxyPort))) { if (!isOversea && !(await testProxy(this.proxyAddr, this.proxyPort))) {
e.reply("检测到没有梯子,无法解析TikTok"); e.reply("检测到没有梯子,无法解析");
return false; return false;
} }
@ -1070,7 +1070,7 @@ export class tools extends plugin {
const isOversea = await this.isOverseasServer(); const isOversea = await this.isOverseasServer();
// 如果不是海外用户且没有梯子直接返回 // 如果不是海外用户且没有梯子直接返回
if (!isOversea && !(await testProxy(this.proxyAddr, this.proxyPort))) { if (!isOversea && !(await testProxy(this.proxyAddr, this.proxyPort))) {
e.reply("检测到没有梯子,无法解析TikTok"); e.reply("检测到没有梯子,无法解析油管");
return false; return false;
} }