1
0
mirror of https://github.com/Mrs4s/go-cqhttp.git synced 2025-05-04 11:07:39 +08:00

!fixup: optimize(qisgn): async operations (#2415)

Add missing wg.Wait()

Fixes: fd6ef4a2b8ed ("optimize(qisgn): async operations")

Signed-off-by: Yuan Si <do4suki@gmail.com>
This commit is contained in:
YumeMichi 2023-08-31 19:01:53 +08:00 committed by GitHub
parent 9e6d7b7650
commit f16d72f0ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -115,6 +115,7 @@ func asyncCheckServer(servers []config.SignServer) *config.SignServer {
}
}(i, s)
}
wg.Wait()
return ss.get()
}