We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9efb8a commit bb91a87Copy full SHA for bb91a87
src/backend/images_cache.ts
@@ -18,12 +18,14 @@ export const initImagesCache = () => {
18
}
19
20
const getImageFromCache = (url: string) => {
21
- const realUrl = url.replace('imagecache://', '')
+ let realUrl = url.replace('imagecache://', '')
22
// digest of the image url for the file name
23
const digest = createHash('sha256').update(realUrl).digest('hex')
24
const cachePath = join(imagesCachePath, digest)
25
26
if (!existsSync(cachePath) && realUrl.startsWith('http')) {
27
+ realUrl = realUrl.replace('https//', 'https://')
28
+ realUrl = realUrl.replace('http//', 'http://')
29
// if not found, download in the background
30
axios
31
.get(realUrl, { responseType: 'stream' })
0 commit comments