Well having 0 coding knowledge I can only speculate at best but here's the fix someone got for me:
in runtime.js after export.
replace:
img_.onerror = function (e)
{
img_.c2error = true;
anyImageHadError = true;
if (console && console.error)
console.error("Error loading image '" + img_.src + "': ", e);
};
if (this.isEjecta)
with:
img_.onerror = function (e)
{
if(img_.try===3){
img_.c2error = true;
anyImageHadError = true;
if (console && console.error)
console.error("Error loading image '" + img_.src + "': ", e);
} else {
img_.src='';
if(img_.try===undefined) img_.try=0;
setTimeout(function(){
img_.try++;
img_.src=src_;
},50);
}
};
if (this.isEjecta)
(we also had the red loading error on linux and it fixed it there too though people don't seem to get that as often.)
Not sure if it will the same for everyone else but it worked for us.