converted most TODOa to issues

This commit is contained in:
2025-05-24 13:38:34 +02:00
parent 1424ec981c
commit 769b9b4ccd
4 changed files with 1 additions and 12 deletions

View File

@ -17,7 +17,6 @@ function formatDates() {
function getPostTexts() {
let boxes = document.querySelectorAll('.post-box');
// TODO: Implement multiple fetches with one call
boxes.forEach(function(el) {
let id = el.querySelector('.post-meta-box').querySelector('span').innerText.replace('#','');
get('get_posttext.php?id='+id).then(function(response) {
@ -50,7 +49,6 @@ function getPostTexts() {
function getUserDetails() {
let boxes = document.querySelectorAll('.user-box');
// TODO: Implement multiple fetches with one call
boxes.forEach(function(el) {
let userBox = el.querySelector('.username');
if (userBox == null) {