Skip to content
Snippets Groups Projects
Commit 4d87dec3 authored by aapekaur's avatar aapekaur
Browse files

mixed content bug fixed

parent af3d5bc2
No related branches found
No related tags found
No related merge requests found
Pipeline #15339 passed
......@@ -77,7 +77,7 @@ const getAuctions = async ()=>{
}
}
console.log("website root address:", window.location.origin )
let response = await fetch('/auction_item', options)
let response = await fetch(window.location.origin.concat('/auction_item'), options)
let text = await response.text()
let items = await JSON.parse(JSON.parse(text))
......
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