for completeness, more stealthing

master
Ted Unangst 5 years ago
parent 3228970d7b
commit c318eaed60

@ -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)

Loading…
Cancel
Save