diff --git a/web.go b/web.go index e6e4a1f..72d94fc 100644 --- a/web.go +++ b/web.go @@ -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)