mirror of
https://github.com/owncast/owncast.git
synced 2024-12-18 07:12:33 +03:00
rm empty strings from services in nodeinfo (#1924)
This commit is contained in:
parent
10cdf3d9b8
commit
32ac156588
1 changed files with 2 additions and 2 deletions
|
@ -99,8 +99,8 @@ func NodeInfoV2Controller(w http.ResponseWriter, r *http.Request) {
|
|||
res := response{
|
||||
Version: "2.0",
|
||||
Services: services{
|
||||
Inbound: []string{""},
|
||||
Outbound: []string{""},
|
||||
Inbound: []string{},
|
||||
Outbound: []string{},
|
||||
},
|
||||
Software: software{
|
||||
Name: "owncast",
|
||||
|
|
Loading…
Reference in a new issue