Some websites break iframe embedding by checking the windows url and redirect to their original web address. That seems legit but breaks the “original” view in NewsBlur.
Easiest workaround is to use the feed or story view, but I think the original view is what makes NewsBlur special.
Maybe this could be filtered, e.g. check for the variable “top.location.href” in JavaScript. Sadly this means performance losses.
Example website: aptgetupdate.de
var parent_location = parent.location.href.toLowerCase(); <br />
if(parent){ <br />
if ( top.location.href.toLowerCase() !=
<br />
document.location.href.toLowerCase()){ <br />
if(parent_location.indexOf('{http://www.aptgetupdate.de}')
<br />
!= 0 ){ <br />
top.location.href = document.location.href; <br />
} <br />
} <br />
} <br /> } <br /> catch ( err ){ <br />
if(typeof window.console != "undefined"){ <br />
console.log(err); <br />
} <br />
top.location.href = document.location.href; <br /> } <br /><br /> if (parent.frames.length > 0)
<br />
top.location.replace(document.location) <br /> </script>```