Closed dvaldivia closed 1 year ago
@GRadziejewski please try to reproduce
Checked on Safari. I can reproduce the problem. Request is block by Ghostery, when extension is turned off I will receive 404.
When Ghostery is turned on:
When Ghostery is turned off:
Those requests are being blocked by Easylist privacy list https://github.com/easylist/easylist/blob/f28e88315b884d16fc169685d32ec37b8696e755/easyprivacy/easyprivacy_general.txt#L66
it may an adblocker bug
I can reproduce, but now I'm no longer sure what the behavior should be in this case.
For testing, I used this dummy page:
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>My test page</title>
</head>
<body>
<p>This should show an image with the text "image.png"</p>
<img src="http://localhost:9876/image.png" alt="My test image" />
<p>This should also show an image with the text "image.png" (unless blocked)</p>
<img src="http://localhost:9876/tracking-v1/tracking/image.png?" alt="My test image" />
</body>
</html>
The path in the second link has been chosen to match -v1/tracking/
. Depending on the implementation, the results differ:
I can think of arguments in both directions.
In the original URL, this rule blocks it: https://github.com/easylist/easylist/blob/f28e88315b884d16fc169685d32ec37b8696e755/easyprivacy/easyprivacy_general.txt#L631
/api/v1/metrics
The current version supports whitelisting local domains, so you should be able to add the domain to the paused list.
@dvaldivia Please confirm if this solves your problem.
@dvaldivia Please re-open if the issue still exists.
Description
I'm doing some local development and API calls to localhost are being blocked, but only a select few, mainly
This also happens on Firefox, but Firefox allows me to turn off Ghostery on the "entire site" and things start working, but on Safari it thinks I'm using
jwt.io
for some reasonExpected Behavior
This used to work just fine
Actual Behavior
calls are getting blocked