feat: fix some missing backslash

This commit is contained in:
max_richter 2023-07-26 13:58:38 +02:00
parent 67db6dc9af
commit 3cc5a94a18

View File

@ -29,7 +29,7 @@ export async function getDocuments(): Promise<Document[]> {
}
export async function getDocument(name: string): Promise<string> {
const response = await fetch(SILVERBULLET_SERVER + name);
const response = await fetch(SILVERBULLET_SERVER + "/" + name);
return await response.text();
}