diff options
author | FChannel <> | 2021-06-06 20:22:07 -0700 |
---|---|---|
committer | FChannel <> | 2021-06-06 20:22:07 -0700 |
commit | bf23a5c30ace0525e2ad67a979916af5ebab3001 (patch) | |
tree | 2b592ea4eb26d68bc399f4aaeaa80db4b77eba19 /outboxPost.go | |
parent | 4cde44d9c4ac46f55f2004baf692fc05beb1f66e (diff) |
nil actor variables for deleting posts
Diffstat (limited to 'outboxPost.go')
-rw-r--r-- | outboxPost.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/outboxPost.go b/outboxPost.go index 03e79ff..e86703d 100644 --- a/outboxPost.go +++ b/outboxPost.go @@ -513,7 +513,6 @@ func CheckCaptcha(db *sql.DB, captcha string) bool { func ParseInboxRequest(w http.ResponseWriter, r *http.Request, db *sql.DB) { activity := GetActivityFromJson(r, db) - if !VerifyHeaderSignature(r, *activity.Actor) { response := RejectActivity(activity) MakeActivityRequest(db, response) |