mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-07-19 12:03:37 +00:00
@@ -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