Was pointing to issue on archived mitmweb issue, instead point to active mitmproxy issue (#5951)

This commit is contained in:
James O'Claire 2023-02-25 17:29:26 +08:00 committed by GitHub
parent 244ff35e60
commit 01c1090ec1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -69,7 +69,7 @@ function body(regex){
function bodyFilter(flow){
return true;
}
bodyFilter.desc = "body filters are not implemented yet, see https://github.com/mitmproxy/mitmweb/issues/10";
bodyFilter.desc = "body filters are not implemented yet, see https://github.com/mitmproxy/mitmproxy/issues/3609";
return bodyFilter;
}
@ -79,7 +79,7 @@ function requestBody(regex){
function requestBodyFilter(flow){
return true;
}
requestBodyFilter.desc = "body filters are not implemented yet, see https://github.com/mitmproxy/mitmweb/issues/10";
requestBodyFilter.desc = "body filters are not implemented yet, see https://github.com/mitmproxy/mitmproxy/issues/3609";
return requestBodyFilter;
}
@ -89,7 +89,7 @@ function responseBody(regex){
function responseBodyFilter(flow){
return true;
}
responseBodyFilter.desc = "body filters are not implemented yet, see https://github.com/mitmproxy/mitmweb/issues/10";
responseBodyFilter.desc = "body filters are not implemented yet, see https://github.com/mitmproxy/mitmproxy/issues/3609";
return responseBodyFilter;
}