diff options
-rw-r--r-- | Follow.go | 2 | ||||
-rw-r--r-- | OutboxPost.go | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -135,7 +135,7 @@ func AcceptFollow(activity Activity) Activity { return accept } -func RejectFollow(activity Activity) Activity { +func RejectActivity(activity Activity) Activity { var accept Activity accept.AtContext.Context = activity.AtContext.Context accept.Type = "Reject" diff --git a/OutboxPost.go b/OutboxPost.go index c2bf7fe..16d9f5f 100644 --- a/OutboxPost.go +++ b/OutboxPost.go @@ -512,6 +512,8 @@ func ParseInboxRequest(w http.ResponseWriter, r *http.Request, db *sql.DB) { } if !RemoteActorHasAuth(activity.Actor.Id, auth[1]) { + response := RejectActivity(activity) + MakeActivityRequest(db, response) return } @@ -545,7 +547,7 @@ func ParseInboxRequest(w http.ResponseWriter, r *http.Request, db *sql.DB) { MakeActivityRequest(db, response) } else { fmt.Println("follow request for rejected") - response := RejectFollow(activity) + response := RejectActivity(activity) MakeActivityRequest(db, response) } } |