I too notice this problem intermittently. I am now in the habit of checking the html code for the image. I like to see a simple, relative url for the image, that is not also complicated with
data-api-returntype="File"
This is good:
<img src="/courses/123456/files/6543210/preview" alt="graph.PNG" width="250" height="238" />
and this is bad:
<img src="https://uweau.instructure.com/courses/123456/files/6543210/preview" alt="graph.PNG" width="250" height="238" data-api-endpoint="https://uweau.instructure.com/api/v1/courses/123456/files/6543210" data-api-returntype="File" />
In the above examples, I made up a course-id number 123456 and image-id number 6543210
Sometimes, the bad syntax (meaning that a broken link results in some browsers) appears when copying the quiz from one course to another. I also think the data-api-returntype="File" might happen when you grab the image by linking to a course file, as opposed to using the "embed image" method. I am not sure if the broken links result from the absolute url, from the data-api-returntype, or a combination of both.
This discussion post is outdated and has been archived. Please use the Community question forums and official documentation for the most current and accurate information.