wm => AP: drop warning on 202 response, now that mastodon is fixed

for #16
create
Ryan Barrett 2018-10-17 06:41:31 -07:00
rodzic dfe9479838
commit eea19045ff
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 6BE31FDF4776E9D4
1 zmienionych plików z 0 dodań i 3 usunięć

Wyświetl plik

@ -165,9 +165,6 @@ class WebmentionHandler(webapp2.RequestHandler):
resp = common.requests_post(inbox_url, json=source_activity, auth=auth,
headers=headers)
self.response.status_int = resp.status_code
if resp.status_code == 202:
self.response.write('202 response! If this is Mastodon 1.x, their '
'signature verification probably failed. :(\n')
self.response.write(resp.text)
def send_salmon(self, source_obj, target_resp=None):