feat: update API routes for version info and enhance version fetching functionality

This commit is contained in:
Will Miao
2025-06-20 16:38:11 +08:00
parent 1b2a02cb1a
commit 32d12bb334
3 changed files with 71 additions and 3 deletions

View File

@@ -60,7 +60,7 @@ export class UpdateService {
try {
// Call backend API to check for updates
const response = await fetch('/loras/api/check-updates');
const response = await fetch('/api/check-updates');
const data = await response.json();
if (data.success) {