Skip to content
Snippets Groups Projects
Commit 639e88b0 authored by Tim's avatar Tim
Browse files

change relative protocol img src to https #205

parent 58929438
No related branches found
No related tags found
No related merge requests found
...@@ -74,7 +74,11 @@ function img(state, child) { ...@@ -74,7 +74,11 @@ function img(state, child) {
if(url) { if(url) {
state.images.add(url) state.images.add(url)
if(state.mutate) { if(state.mutate) {
const url2 = ipfsPrefix(url) let url2 = ipfsPrefix(url)
if(/^\/\//.test(url2)) {
// Change relative protocol imgs to https
url2 = "https:" + url2
}
if(url2 !== url) { if(url2 !== url) {
child.setAttribute('src', url2) child.setAttribute('src', url2)
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment