Browse Source

rm empty strings from services in nodeinfo (#1924)

pull/1927/head
Meisam 3 years ago committed by GitHub
parent
commit
32ac156588
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      activitypub/controllers/nodeinfo.go

4
activitypub/controllers/nodeinfo.go

@ -99,8 +99,8 @@ func NodeInfoV2Controller(w http.ResponseWriter, r *http.Request) { @@ -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…
Cancel
Save