New context menu, info pane fixes, pinned item syncing, and navigation bug fixes
All checks were successful
Automated Container Build / build-and-push (push) Successful in 1m19s

This commit is contained in:
Elijah 2026-05-22 19:40:08 -07:00
parent a52f1d63f7
commit 5200654d0f
5 changed files with 111 additions and 27 deletions

View file

@ -152,7 +152,7 @@ class ApiClient {
}
async getExtendedFileInfo(path: string) {
const res = await this.request(`/api/files/info/${encodeURIComponent(path)}`);
const res = await this.request(`/api/files/info/?path=${encodeURIComponent(path)}`);
return res.json();
}