Browse Source

fix the server name (#1907)

the name should match ^[a-z0-9-]+$
pull/1908/head
Meisam 3 years ago committed by GitHub
parent
commit
d0ea430f98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      activitypub/controllers/nodeinfo.go

2
activitypub/controllers/nodeinfo.go

@ -90,7 +90,7 @@ func NodeInfoV2Controller(w http.ResponseWriter, r *http.Request) { @@ -90,7 +90,7 @@ func NodeInfoV2Controller(w http.ResponseWriter, r *http.Request) {
res := response{
Version: "2.0",
Software: software{
Name: "Owncast",
Name: "owncast",
Version: config.VersionNumber,
},
Usage: usage{

Loading…
Cancel
Save