修复IP地址泄露的问题2

This commit is contained in:
CN-JS-HuiBai
2026-04-04 23:15:24 +08:00
parent c6e6c91e77
commit 4e8cce52ea
2 changed files with 3 additions and 3 deletions

View File

@@ -371,7 +371,8 @@ async function getOverviewMetrics(url, sourceName) {
total: totalTraffic24hRx + totalTraffic24hTx
},
servers: allInstancesList.map(s => {
return s; // Include all fields including originalInstance
const { originalInstance, ...rest } = s;
return rest;
})
};
}