fix: image loading stuff

This commit is contained in:
Max Richter
2025-10-22 14:20:34 +02:00
parent 1245a2ad40
commit 42c5abecc1
2 changed files with 7 additions and 5 deletions

View File

@@ -23,7 +23,7 @@ export type MemoriumEntry = MemoriumFile | MemoriumDir;
export async function listResource(
id: string,
): Promise<MemoriumEntry | undefined> {
const url = `https://marka.max-richter.dev/${id}`;
const url = `https://marka.max-richter.dev/resources/${id}`;
console.log("Fetching: ", url);
try {
const response = await fetch(url);