Images not loading in Firefox private browser
We're seeing images (both user avatars and content within tweets) being blocked in Firefox private browsers with Enhanced Tracking Protection turned on:
Test URL: https://chef.convex.dev/
This is quite possibly a wontfix because the browser is blocking images coming from Twitter, but I figured it could be worth reporting for others who may run into this issue.
I'm not sure if it's been considered to support proxy services or somehow pre-rendering/caching the tweets so that these requests are made to the website using react-tweet and not directly to Twitter.
it's hard to fix
@LinuxKunaL Totally understand, and feel free to close this. Just wanted to report it for anyone else who may be investigating the same issue and hoping for a quick fix. We ended up building a custom tweet component with hard-coded data to ensure no one runs into this.
It seems the issue is primarily related to the URL suffix. Changing _normal to _400x400 allows the avatar image to load, take note it only fetches the version that existed at the time the tweet was posted. Assume this has something to do with it as well.
- Changing
_normalto_400x400prevents 404s.
#201