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 need to process some HTML files out of my control, and sometimes I found itens like that <link href='/test/mycss.css'> but without origin or base tag to find the origin of request.
How is the right way to ignore this and process the other content of my HTML?
And can we have an config to ignore 404 and remove this content on validate?
I try to create my own base URI to ignore all content but when I set the baseUri on PreMailer this removes the url getting only the base and give the same error.
I just ran into the same issue. One of my customers tried to request an invalid font (https://fonts.googleapis.com/css?family=Segoe) which returns a 400 error and throws an unhandled WebException.
I'm going to submit a pr that handles webexceptions in LinkTagCssSource and adds to the InlineResult.Warnings collection:
I need to process some HTML files out of my control, and sometimes I found itens like that
<link href='/test/mycss.css'>
but without origin or base tag to find the origin of request.How is the right way to ignore this and process the other content of my HTML?
And can we have an config to ignore 404 and remove this content on validate?
I try to create my own base URI to ignore all content but when I set the baseUri on PreMailer this removes the url getting only the base and give the same error.
Follow the simple test:
Follow the proposal who solve my issue (is valid?):
Thanks.
The text was updated successfully, but these errors were encountered: