Try to upgrade gdal

This commit is contained in:
2025-08-25 05:33:39 +09:00
parent fe5a044c82
commit da2a1d64ef
5 changed files with 30 additions and 36 deletions

View File

@ -850,7 +850,7 @@
async function loadEventCodes() {
console.log('loadEventCodes called');
try {
const apiUrl = `${API_BASE_URL}/events/`;
const apiUrl = `${API_BASE_URL}/new-events/`;
console.log('Fetching events from URL:', apiUrl);
const response = await fetch(apiUrl, {

View File

@ -122,7 +122,7 @@
// イベント一覧の取得と表示
async function loadEvents() {
try {
const response = await fetch(`${API_BASE_URL}/api/newevent2/`, {
const response = await fetch(`${API_BASE_URL}/api/new-events/`, {
method: 'GET',
headers: {
'Accept': 'application/json',