for completeness, more stealthing

This commit is contained in:
Ted Unangst 2019-09-24 17:03:20 -04:00
parent 3228970d7b
commit c318eaed60
1 changed files with 8 additions and 0 deletions

8
web.go
View File

@ -470,6 +470,10 @@ func emptiness(w http.ResponseWriter, r *http.Request) {
http.NotFound(w, r)
return
}
if stealthmode(user.ID, r) {
http.NotFound(w, r)
return
}
colname := "/followers"
if strings.HasSuffix(r.URL.Path, "/following") {
colname = "/following"
@ -1309,6 +1313,10 @@ func fingerlicker(w http.ResponseWriter, r *http.Request) {
http.NotFound(w, r)
return
}
if stealthmode(user.ID, r) {
http.NotFound(w, r)
return
}
j := junk.New()
j["subject"] = fmt.Sprintf("acct:%s@%s", user.Name, serverName)