PR #5: Add equipment screen functionality (merges main with dev)

This commit is contained in:
kittentm 2026-03-18 21:13:52 +01:00
commit 429a1eb6ff
No known key found for this signature in database
GPG key ID: AC43DFDBC1F44A91
411 changed files with 17956 additions and 779 deletions

View file

@ -1,10 +1,9 @@
document.addEventListener("DOMContentLoaded", function () {
const apiBase = CONFIG.API_BASE_URL;
const friendListUrl = "/friend_list/index.html";
async function checkExistingSession() {
try {
const response = await fetch(`${apiBase}/api/v1/session_id/check`, {
const response = await fetch("/api/v1/session_id/check", {
method: 'GET',
credentials: 'include'
});