Update links to mitmweb issue (#5952)

Replace: https://github.com/mitmproxy/mitmweb/issues/10
with: https://github.com/mitmproxy/mitmproxy/issues/3609
This commit is contained in:
Przemysław Dąbek 2023-02-27 13:42:47 +01:00 committed by GitHub
parent 51670861e6
commit d9bdaa060a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2084,7 +2084,7 @@ export default (function() {
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;
}
@ -2094,7 +2094,7 @@ export default (function() {
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;
}
@ -2104,7 +2104,7 @@ export default (function() {
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;
}