I'm getting the following error in my chrome console for a Wordpress site I'm working on.
Failed to set referrer policy: The value 'http://example.com/comic/' is not one of 'always', 'default', 'never', 'no-referrer', 'no-referrer-when-downgrade', 'origin', 'origin-when-crossorigin', or 'unsafe-url'. The referrer policy has been left unchanged.
It's reffereing to this line in the <head>
of the HTML document...
<meta name="Referrer" content="http://example.com/comic/" />
I'm vieing the page over http
, not https
.
What is causing this issue and how can I fix it?