mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-22 09:58:14 -05:00
面板无设备数列表接口时暂不报错
This commit is contained in:
parent
12fbcb1460
commit
ea0b7d8f40
@ -54,14 +54,14 @@ func (c *Client) GetUserList() ([]UserInfo, error) {
|
||||
return c.UserList.Users, nil
|
||||
}
|
||||
|
||||
// GetUserAlive will fetch the alive IPs for users
|
||||
// GetUserAlive will fetch the alive_ip count for users
|
||||
func (c *Client) GetUserAlive() (map[int]int, error) {
|
||||
const path = "/api/v1/server/UniProxy/alivelist"
|
||||
r, err := c.client.R().
|
||||
ForceContentType("application/json").
|
||||
Get(path)
|
||||
if err = c.checkResponse(r, path, err); err != nil {
|
||||
return nil, err
|
||||
if err != nil {
|
||||
return make(map[int]int), nil
|
||||
}
|
||||
|
||||
if r != nil {
|
||||
|
Loading…
Reference in New Issue
Block a user