mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-07-19 12:03:37 +00:00
fix: 框架启动概率性失败
修复框架启动有概率失败的问题
This commit is contained in:
@@ -107,7 +107,13 @@ function registerInitCallback(callback) {
|
|||||||
|
|
||||||
async function fetchServices(timeout = 10000) {
|
async function fetchServices(timeout = 10000) {
|
||||||
return Promise.race([
|
return Promise.race([
|
||||||
pollForNTInitializationCheck(),
|
new Promise((resolve) => {
|
||||||
|
setTimeout(() => {
|
||||||
|
pollForNTInitializationCheck().then(() => {
|
||||||
|
resolve(true);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}),
|
||||||
new Promise((resolve) => {
|
new Promise((resolve) => {
|
||||||
setTimeout(() => resolve(false), timeout);
|
setTimeout(() => resolve(false), timeout);
|
||||||
}),
|
}),
|
||||||
|
Reference in New Issue
Block a user