Skip to content

Commit

Permalink
fix(script): 优化软件辅助错误提示
Browse files Browse the repository at this point in the history
  • Loading branch information
enncy committed Nov 24, 2023
1 parent 0a8de35 commit 7f42cba
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/scripts/src/utils/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,11 @@ async function appActionRequest(
return res;
} catch (e) {
console.error(e);
$console.error('软件辅助错误', data.action, String(e));
$console.error(
'软件辅助错误,请检查此浏览器是否由桌面软件启动的,或者尝试在软件内重启浏览器。',
data.action,
String(e)
);
return '';
}
}

0 comments on commit 7f42cba

Please sign in to comment.