Skip to content

Commit bb91a87

Browse files
authored
fix real url passed over protocol (#1210)
1 parent f9efb8a commit bb91a87

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/backend/images_cache.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@ export const initImagesCache = () => {
1818
}
1919

2020
const getImageFromCache = (url: string) => {
21-
const realUrl = url.replace('imagecache://', '')
21+
let realUrl = url.replace('imagecache://', '')
2222
// digest of the image url for the file name
2323
const digest = createHash('sha256').update(realUrl).digest('hex')
2424
const cachePath = join(imagesCachePath, digest)
2525

2626
if (!existsSync(cachePath) && realUrl.startsWith('http')) {
27+
realUrl = realUrl.replace('https//', 'https://')
28+
realUrl = realUrl.replace('http//', 'http://')
2729
// if not found, download in the background
2830
axios
2931
.get(realUrl, { responseType: 'stream' })

0 commit comments

Comments
 (0)