mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-03 02:58:42 +00:00
Fix V2ray webapi 数据类型错误
This commit is contained in:
@@ -28,7 +28,7 @@ class V2RayController extends CoreController
|
||||
'key' => $cert ? $cert->key : '',
|
||||
'pem' => $cert ? $cert->pem : '',
|
||||
'v2_license' => (string) sysConfig('v2ray_license'),
|
||||
'v2_alter_id' => $node->profile['v2_alter_id'] ?? '',
|
||||
'v2_alter_id' => (int) $node->profile['v2_alter_id'],
|
||||
'v2_port' => $node->port,
|
||||
'v2_method' => $node->profile['v2_method'] ?? '',
|
||||
'v2_net' => $node->profile['v2_net'] ?? '',
|
||||
|
||||
Reference in New Issue
Block a user