Skip to content

Commit

Permalink
add more details
Browse files Browse the repository at this point in the history
  • Loading branch information
x committed Oct 20, 2024
1 parent 3eaa9dc commit 3d52467
Show file tree
Hide file tree
Showing 5 changed files with 280 additions and 187 deletions.
9 changes: 8 additions & 1 deletion docs/hiddifyrpc.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@
| ----- | ---- | ----- | ----------- |
| tag | [string](#string) | | |
| type | [string](#string) | | |
| selected | [string](#string) | | |
| selected | [OutboundInfo](#hcore-OutboundInfo) | | |
| selectable | [bool](#bool) | | |
| Is_expand | [bool](#bool) | | |
| items | [OutboundInfo](#hcore-OutboundInfo) | repeated | |
Expand Down Expand Up @@ -282,6 +282,13 @@
| url_test_time | [google.protobuf.Timestamp](#google-protobuf-Timestamp) | | |
| url_test_delay | [int32](#int32) | | |
| ipinfo | [IpInfo](#hcore-IpInfo) | | |
| is_selected | [bool](#bool) | | |
| is_group | [bool](#bool) | | |
| is_secure | [bool](#bool) | | |
| is_visible | [bool](#bool) | | |
| port | [uint32](#uint32) | | |
| host | [string](#string) | | |
| tag_display | [string](#string) | | |



Expand Down
2 changes: 1 addition & 1 deletion v2/hcore/command_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func (cch *CommandClientHandler) WriteGroups(message libbox.OutboundGroupIterato
},
)
}
groups.Items = append(groups.Items, &OutboundGroup{Tag: group.Tag, Type: group.Type, Selected: group.Selected, Items: groupItems})
groups.Items = append(groups.Items, &OutboundGroup{Tag: group.Tag, Type: group.Type, Selected: nil, Items: groupItems})
}
if cch.command == libbox.CommandGroupInfoOnly {
mainOutboundsInfoObserver.Emit(&groups)
Expand Down
Loading

0 comments on commit 3d52467

Please sign in to comment.