This commit is contained in:
Tracker-Friendly 2024-03-28 18:32:48 +00:00
parent ad2fbd0c67
commit f1697695f2
1 changed files with 5 additions and 2 deletions

View File

@ -41,8 +41,11 @@
body: JSON.stringify(data)
})
.then(response => {
let code = await response.text()
window.location.replace(redirect_uri + "?code=" + code + "&state=" + state)
async function doStuff() {
let code = await response.text()
window.location.replace(redirect_uri + "?code=" + code + "&state=" + state)
}
doStuff()
})
.catch(error => {
alert("Error sending data: " + error.message);