修复节点添加异常

This commit is contained in:
lin
2025-05-16 08:48:38 +08:00
parent bb5018c7f4
commit b8f2742c29
2 changed files with 4 additions and 4 deletions

View File

@@ -24,13 +24,13 @@ export function getMediaServer(id) {
}
export function checkMediaServer(params) {
const { ip, port, secret, type } = params
const { ip, httpPort, secret, type } = params
return request({
method: 'get',
url: `/api/server/media_server/check`,
params: {
ip: ip,
port: port,
port: httpPort,
secret: secret,
type: type
}