Update AppImage

This commit is contained in:
MacRimi
2025-10-26 22:53:13 +01:00
parent 87f9b2b72c
commit 05093a9d49
2 changed files with 83 additions and 4 deletions

View File

@@ -174,7 +174,7 @@ const fetchStorageData = async (): Promise<StorageData | null> => {
const fetchNetworkData = async (): Promise<NetworkData | null> => {
try {
const baseUrl = typeof window !== "undefined" ? `${window.location.protocol}//${window.location.hostname}:8008` : ""
const apiUrl = `${baseUrl}/api/network`
const apiUrl = `${baseUrl}/api/network/summary`
const response = await fetch(apiUrl, {
method: "GET",