fix: open authorization url on the current browsing context

This commit is contained in:
phot0n 2022-06-01 18:39:07 +05:30
parent 834410a2a5
commit 4d5dec4048

View file

@ -76,7 +76,7 @@ function oauth_access(frm) {
},
callback: function(r) {
if (!r.exc) {
window.open(r.message.url);
window.open(r.message.url, "_self");
}
}
});