Merge branch 'master' into dev/1078-newUI

This commit is contained in:
lin
2025-05-16 08:50:26 +08:00
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
}