You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've seen quite some errors in my pic-cache worker where the following URL could be cached. It turned out some images are embeded in HTML in Data URI and does not need to be cached.
GET https://xxx/piccache?url=data%3Aimage%2Fsvg%2Bxml%2C%253Csvg%2520xmlns%3D%2527http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%2527%2520version%3D%25271.1%2527%2520width%3D%25271886%2527%2520height%3D%25271936%2527%2F%253E"
It should be safe to skip all URLs starting with data: IMO
The text was updated successfully, but these errors were encountered:
I've seen quite some errors in my pic-cache worker where the following URL could be cached. It turned out some images are embeded in HTML in Data URI and does not need to be cached.
It should be safe to skip all URLs starting with
data:
IMOThe text was updated successfully, but these errors were encountered: