fuck again

This commit is contained in:
MeowcaTheoRange 2024-03-19 20:38:17 -05:00
parent b28555b7e4
commit ba06ec32c0

View file

@ -146,7 +146,7 @@ function readFollowersMap(m) {
if (m == null) return;
const handles = Array.from(el_id_listfollowers.querySelectorAll(".follower_checkname"));
handles.forEach((handle) => {
const checkbox = handle.parentElement.parentElement.querySelector(".follower_checkbox");
const checkbox = handle.parentElement.querySelector(".follower_checkbox");
checkbox.checked = m[handle.innerHTML];
});
}
@ -294,7 +294,7 @@ function readFollowingMap(m) {
if (m == null) return;
const handles = Array.from(el_id_listfollowing.querySelectorAll(".following_checkname"));
handles.forEach((handle) => {
const checkbox = handle.parentElement.parentElement.querySelector(".following_checkbox");
const checkbox = handle.parentElement.querySelector(".following_checkbox");
checkbox.checked = m[handle.innerHTML];
});
}