fix this
This commit is contained in:
parent
e0f1a59d86
commit
3b05a957da
1 changed files with 4 additions and 4 deletions
|
@ -33,8 +33,6 @@ async function verify() {
|
||||||
const instance = el_id_instance.value.replace(/@/gim, "");
|
const instance = el_id_instance.value.replace(/@/gim, "");
|
||||||
el_id_user.value = username;
|
el_id_user.value = username;
|
||||||
el_id_instance.value = instance;
|
el_id_instance.value = instance;
|
||||||
el_id_submitwhoamiFollowers.disabled = true;
|
|
||||||
el_id_submitwhoamiFollowing.disabled = true;
|
|
||||||
if (username.length < 1) return null;
|
if (username.length < 1) return null;
|
||||||
if (instance.length < 1) return null;
|
if (instance.length < 1) return null;
|
||||||
let user_req;
|
let user_req;
|
||||||
|
@ -44,8 +42,6 @@ async function verify() {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
const user_json = await user_req.json();
|
const user_json = await user_req.json();
|
||||||
el_id_submitwhoamiFollowers.disabled = false;
|
|
||||||
el_id_submitwhoamiFollowing.disabled = false;
|
|
||||||
if (user_req.ok) return {
|
if (user_req.ok) return {
|
||||||
USER_ID: user_json.id,
|
USER_ID: user_json.id,
|
||||||
INSTANCE: instance
|
INSTANCE: instance
|
||||||
|
@ -55,7 +51,11 @@ async function verify() {
|
||||||
|
|
||||||
el_id_submitwhoamiFollowers.addEventListener("click", async (e) => {
|
el_id_submitwhoamiFollowers.addEventListener("click", async (e) => {
|
||||||
el_id_errorwhoami.innerHTML = "";
|
el_id_errorwhoami.innerHTML = "";
|
||||||
|
el_id_submitwhoamiFollowers.disabled = true;
|
||||||
|
el_id_submitwhoamiFollowing.disabled = true;
|
||||||
const result = await verify();
|
const result = await verify();
|
||||||
|
el_id_submitwhoamiFollowers.disabled = false;
|
||||||
|
el_id_submitwhoamiFollowing.disabled = false;
|
||||||
if (result == null) {
|
if (result == null) {
|
||||||
el_id_errorwhoami.innerHTML = "Invalid user!";
|
el_id_errorwhoami.innerHTML = "Invalid user!";
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue