From 841b74113a45c860fa77715d9a1594df96a0bcac Mon Sep 17 00:00:00 2001 From: Aaron Parecki Date: Sat, 6 Feb 2016 13:44:11 -0800 Subject: [PATCH] change http response to 200 to see if that helps superfeedr --- controllers/API.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/API.php b/controllers/API.php index 5c31461..332843f 100644 --- a/controllers/API.php +++ b/controllers/API.php @@ -201,7 +201,7 @@ class API { return $this->webmention($new_request, $response); } else { - return $this->respond($response, 400, [ + return $this->respond($response, 200, [ 'error' => 'invalid_request', 'error_description' => 'Could not find source URL from the superfeedr payload' ]);