outline / rich-markdown-editor

The open source React and Prosemirror based markdown editor that powers Outline. Want to try it out? Create an account:
https://www.getoutline.com
BSD 3-Clause "New" or "Revised" License
2.87k stars 589 forks source link

fix: Avoid re-download of image from remote source when clicking download button #474

Closed tommoor closed 3 years ago

tommoor commented 3 years ago

By downloading the image once and caching it in memory it allows for the download button to work with signed download urls that have an inbuilt expiry time (eg AWS).

Previously the download button would always re-fetch which meant if the doc had been open longer than the url expiry it would fail.

closes outline/outline#2185