瀏覽代碼

content-type: do slightly more correct header parsing

Jelmer Vernooij 1 年之前
父節點
當前提交
75b0369cca
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      dulwich/client.py

+ 1 - 1
dulwich/client.py

@@ -2007,7 +2007,7 @@ class AbstractHttpGitClient(GitClient):
         if isinstance(data, bytes):
             headers["Content-Length"] = str(len(data))
         resp, read = self._http_request(url, headers, data)
-        if not resp.content_type.startswith(result_content_type):
+        if resp.content_type.split(';')[0] != result_content_type:
             raise GitProtocolError(
                 "Invalid content-type from server: %s" % resp.content_type
             )