瀏覽代碼

Many Mastodon apps don't send Content-Type in DELETE, so ignore it.

default 10 月之前
父節點
當前提交
bbb365e81b
共有 1 個文件被更改,包括 0 次插入3 次删除
  1. 0 3
      mastoapi.c

+ 0 - 3
mastoapi.c

@@ -3008,9 +3008,6 @@ int mastoapi_delete_handler(const xs_dict *req, const char *q_path,
     xs *args      = NULL;
     const char *i_ctype = xs_dict_get(req, "content-type");
 
-    if (i_ctype == NULL)
-        return 0;
-
     if (i_ctype && xs_startswith(i_ctype, "application/json")) {
         if (!xs_is_null(payload))
             args = xs_json_loads(payload);